Skip to content

Commit

Permalink
Convert remaining lint errors to warning
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisInFlow committed Jan 16, 2021
1 parent 14ad03e commit 815cde2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
"rules": {
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
"no-unused-vars": ["warn"],
"prettier/prettier": ["error"]
"prettier/prettier": ["error"],
"no-param-reassign": ["warn"],
"no-shadow": ["warn"],
"no-case-declarations": ["warn"],
"no-use-before-define": ["warn"],
"no-restricted-globals": ["warn"]
},
"env": {
"browser": true,
Expand Down

0 comments on commit 815cde2

Please sign in to comment.