diff options
-rw-r--r-- | .eslintrc.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 0789840..4899960 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -15,6 +15,7 @@ "max-len": ["error", { "code": 120 }], "arrow-parens": [2, "as-needed"], "comma-dangle": ["error", "never"], + "import/extensions": ["error", { "ts": "never", "tsx": "never" }], "arrow-body-style": 0, "no-cond-assign": 0, "linebreak-style": 0, @@ -22,4 +23,4 @@ "react/no-children-prop": 0, "react/no-danger": 0 } -}
\ No newline at end of file +} |