Skip to content

Commit

Permalink
Fix incorrect warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
njqdev committed Sep 5, 2023
1 parent 0d1614c commit f691002
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,19 @@
"@typescript-eslint/indent": ["error", 4],
"curly": "warn",
"eqeqeq": "warn",
"no-unused-vars": "warn",
"no-throw-literal": "warn",
"no-trailing-spaces":"warn"
},
"overrides": [{
"overrides": [
{
"files": ["**/*.js"],
"rules": {
"@typescript-eslint/semi": "warn",
"@typescript-eslint/indent": "none"
}
},
{
"files": ["**/*.ts"],
"rules": {
"@typescript-eslint/naming-convention": ["warn", {
Expand Down

0 comments on commit f691002

Please sign in to comment.