-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
77 lines (76 loc) · 2.11 KB
/
.eslintrc.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier"],
"extends": [
"plugin:@typescript-eslint/recommended",
"airbnb",
"plugin:prettier/recommended"
],
"env": {
"browser": true
},
"globals": {
"JSX": "readonly"
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts", ".tsx"]
},
"typescript": true
}
},
"rules": {
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"react/jsx-filename-extension": [
"error",
{ "extensions": [".js", ".tsx"] }
],
"react/prop-types": "off",
"react/jsx-one-expression-per-line": "off",
"import/extensions": ["error", "never"],
"import/prefer-default-export": "off",
"import/no-unresolved": ["error", { "ignore": ["jotai-scope"] }],
"no-param-reassign": "off",
"no-plusplus": "off",
"no-bitwise": "off",
"symbol-description": "off",
"prefer-object-spread": "off",
"no-use-before-define": "off",
"no-unused-vars": "off",
"no-redeclare": "off",
"camelcase": ["error", { "allow": ["^INTERNAL_"] }],
"react/function-component-definition": [
"error",
{ "namedComponents": "function-declaration" }
],
"react/require-default-props": "off",
"react/destructuring-assignment": "off",
"react/jsx-no-constructed-context-values": "off",
"no-restricted-syntax": "off"
},
"overrides": [
{
"files": ["__tests__/**/*"],
"env": {
"jest": true
},
"rules": {
"import/no-extraneous-dependencies": [
"error",
{ "devDependencies": true }
]
}
},
{
"files": ["examples/**/*"],
"rules": {
"import/no-extraneous-dependencies": "off"
}
}
]
}