forked from willwull/saturnus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
42 lines (42 loc) · 1.15 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "react", "react-hooks"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"prettier/@typescript-eslint",
],
env: {
browser: true,
},
settings: {
react: {
version: "detect",
},
},
rules: {
"no-console": 0,
"no-plusplus": 0,
"react/jsx-filename-extension": 0,
"import/prefer-default-export": 0,
"jsx-a11y/media-has-caption": 0,
"react/no-danger": 0,
"react/sort-comp": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"object-curly-newline": 0,
"no-underscore-dangle": 0,
"react/prefer-stateless-function": 0,
"prefer-destructuring": 0,
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/camelcase": 0,
"react/no-unescaped-entities": 0,
"@typescript-eslint/no-non-null-assertion": 0,
},
};