Skip to content

Commit

Permalink
chore: warn added in eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Pritish Budhiraja committed Mar 18, 2024
1 parent d46d275 commit ac67df2
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
{
"env": {
"browser": true,
"es2021": true
"browser": true,
"es2021": true
},
"extends": [
],
"extends": [],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react-hooks"
],
"plugins": ["react-hooks"],
"rules": {
"react-hooks/rules-of-hooks": "error"
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
}
}

0 comments on commit ac67df2

Please sign in to comment.