-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
71 lines (71 loc) · 1.84 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
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
module.exports = {
env: {
browser: true,
es2021: true,
"jest/globals": true,
},
extends: [
"plugin:react/recommended",
"airbnb",
"prettier",
"plugin:storybook/recommended",
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
sourceType: "module",
},
plugins: ["react", "@typescript-eslint", "jest", "import"],
rules: {
quotes: ["error", "double"],
"import/extensions": "off",
"import/prefer-default-export": "off",
"import/no-unresolved": "off",
"no-plusplus": "off",
"no-loop-func": "off",
"no-nested-ternary": "off",
"lines-between-class-members": "off",
"no-param-reassign": "off",
"react/jsx-filename-extension": "off",
"react/function-component-definition": [
"error",
{
namedComponents: "arrow-function",
unnamedComponents: "arrow-function",
},
],
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": ["error"],
"react/jsx-props-no-spreading": "off",
"no-continue": "off",
"no-restricted-syntax": "off",
"no-labels": "off",
"prefer-destructuring": "off",
"max-classes-per-file": "off",
"react/no-array-index-key": "off",
"react/prop-types": "off",
"no-invalid-this": "error",
"react/require-default-props": "off",
"jsx-a11y/label-has-associated-control": [
2,
{
labelAttributes: ["label"],
controlComponents: ["Slider"],
},
],
"import/no-extraneous-dependencies": "off",
"no-unused-vars": [
"error",
{
argsIgnorePattern: "^_",
},
],
"import/no-cycle": ["error", { maxDepth: Infinity }],
"@typescript-eslint/consistent-type-imports": "error",
"no-shadow": ["error", { allow: ["_"] }],
"no-bitwise": "off",
},
};