-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
38 lines (38 loc) · 1018 Bytes
/
.eslintrc
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
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"plugins": [
"react",
"react-hooks"
],
"extends": ["eslint:recommended", "plugin:react/recommended", "plugin:prettier/recommended"],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018
},
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"linebreak-style": ["error", "unix"],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"import/no-unresolved": "off",
"react/destructuring-assignment": "off",
"import/prefer-default-export": "off",
"react/prop-types": 0,
"@typescript-eslint/no-unused-vars": "off",
"no-nested-ternary": "off",
"no-irregular-whitespace": "off",
"react/jsx-filename-extension": [1, {
"extensions": [".js", ".jsx", "tsx", "ts"]
}],
"react/require-default-props": "warn"
}
}