Skip to content

Commit

Permalink
eslint error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andreas-trad committed Nov 23, 2023
1 parent 9f0dedb commit 7196175
Show file tree
Hide file tree
Showing 5 changed files with 759 additions and 492 deletions.
13 changes: 11 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
{
"parser": "@babel/eslint-parser",
"parserOptions": {
"babelOptions": {
"presets": ["@babel/preset-react"]
}
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"prettier"
],
"plugins": [
"babel",
"prettier"
"prettier",
"react"
],
"env": {
"browser": true,
Expand Down Expand Up @@ -55,6 +62,8 @@
}
],
"no-var": "error",
"no-unused-vars": "error"
"no-unused-vars": "error",
"react/react-in-jsx-scope": "off",
"react/jsx-uses-react": "off"
}
}
Loading

0 comments on commit 7196175

Please sign in to comment.