Skip to content

Commit

Permalink
Update eslint file
Browse files Browse the repository at this point in the history
  • Loading branch information
andyrichardson committed Mar 9, 2020
1 parent 6dc46c8 commit 7526968
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .eslintrc
Expand Up @@ -10,8 +10,15 @@
"plugin:react/recommended"
],
"rules": {
"import/order": 2,
"@typescript-eslint/no-unused-vars": 2,
"import/order": ["error", { "newlines-between": "never" }],
"@typescript-eslint/no-unused-vars": ["error"],
"react/function-component-definition": [
"error",
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-use-before-define": 0,
Expand Down

0 comments on commit 7526968

Please sign in to comment.