Skip to content

Commit

Permalink
πŸŽ‰ ESLint refinements (#235)
Browse files Browse the repository at this point in the history
ESLint, no any, no inferrable types, unused vars - warning

thx to @GrayStrider
  • Loading branch information
GrayStrider authored and peterblazejewicz committed Oct 9, 2019
1 parent 1098943 commit 69124f2
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
"semi": ["error", "always"],
"quotes": ["error", "double"],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off"
"@typescript-eslint/no-explicit-any": 1,
"@typescript-eslint/no-inferrable-types": [
"warn", {
"ignoreParameters": true
}
],
"@typescript-eslint/no-unused-vars": "warn"
}
}

0 comments on commit 69124f2

Please sign in to comment.