-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.eslintrc.json
73 lines (73 loc) · 2.28 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
{
"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": {
"no-shadow": "off",
"no-return-await": "off",
"consistent-return": "off",
"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",
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"react/button-has-type": "off",
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".tsx"] }],
"react/prop-types": "off",
"react/jsx-one-expression-per-line": "off",
"react/jsx-no-useless-fragment": "off",
"import/extensions": ["error", "never"],
"import/prefer-default-export": "off",
"import/no-unresolved": ["error", { "ignore": ["jotai-scope"] }],
"no-param-reassign": "off",
"no-promise-executor-return": "off",
"no-plusplus": "off",
"no-bitwise": "off",
"symbol-description": "off",
"prefer-object-spread": "off",
"no-return-assign": "off",
"no-use-before-define": "off",
"no-unused-vars": "off",
"no-redeclare": "off",
"camelcase": ["error", { "allow": ["^INTERNAL_", "^unstable_"] }],
"react/function-component-definition": ["error", { "namedComponents": "function-declaration" }],
"react/no-unescaped-entities": "off",
"react/no-array-index-key": "off",
"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"
}
}
]
}