Skip to content

Commit

Permalink
Merge pull request #674 from barbalex/673
Browse files Browse the repository at this point in the history
673
  • Loading branch information
barbalex committed May 6, 2024
2 parents c0aafbe + ef2cbde commit 99fb6d6
Show file tree
Hide file tree
Showing 65 changed files with 966 additions and 664 deletions.
26 changes: 18 additions & 8 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"parserOptions": {
"ecmaFeatures": {
"jsx": true
"jsx": true,
},
"ecmaVersion": "latest",
"sourceType": "module"
"sourceType": "module",
},
"parser": "@typescript-eslint/parser",
"root": true,
Expand All @@ -17,23 +17,33 @@
"react-hooks/exhaustive-deps": "warn",
"no-unused-vars": 1,
"no-empty": ["error", { "allowEmptyCatch": true }],
"react/react-in-jsx-scope": "off"
"react/react-in-jsx-scope": "off",
"import/extensions": [
"error",
"ignorePackages",
{
"js": "never",
"jsx": "never",
"ts": "never",
"tsx": "never",
},
],
},
"env": {
"browser": true,
"amd": true,
"node": true,
"es2022": true
"es2022": true,
},
"plugins": ["@typescript-eslint", "react", "react-hooks"],
"settings": {
"react": {
"version": "detect"
}
"version": "detect",
},
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended"
]
"plugin:react/recommended",
],
}
Loading

0 comments on commit 99fb6d6

Please sign in to comment.