Skip to content

Commit

Permalink
Merge branch 'mutable'
Browse files Browse the repository at this point in the history
  • Loading branch information
OldStarchy committed Jun 21, 2024
2 parents dff409a + e9cce72 commit 2098d11
Show file tree
Hide file tree
Showing 19 changed files with 4,943 additions and 693 deletions.
3,988 changes: 3,790 additions & 198 deletions docs/wireframes/screen_main.excalidraw

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import globals from 'globals';
import pluginJs from '@eslint/js';
import tseslint from 'typescript-eslint';
import pluginReactConfig from 'eslint-plugin-react/configs/recommended.js';

export default [
{
files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'],
},
{ languageOptions: { parserOptions: { ecmaFeatures: { jsx: true } } } },
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
pluginReactConfig,
{
languageOptions: {
parserOptions: {
project: 'tsconfig.json',
},
},
rules: {
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/no-confusing-void-expression': 'error',
'react/react-in-jsx-scope': 'off',
},
},
];
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,12 @@
},
"resolutions": {
"styled-components": "^5"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"eslint": "8.x",
"eslint-plugin-react": "^7.34.3",
"globals": "^15.6.0",
"typescript-eslint": "^7.13.1"
}
}
Loading

0 comments on commit 2098d11

Please sign in to comment.