-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
114 lines (114 loc) · 3.3 KB
/
.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"prettier",
"plugin:promise/recommended",
"plugin:eslint-comments/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"plugins": ["react", "import", "unicorn", "eslint-comments"],
"ignorePatterns": ["**/*.d.ts", "**/*.min.js", "**/generated", "**/dist"],
"settings": {
"react": {
"pragma": "React",
"version": "detect",
"linkComponents": ["Link"]
}
},
"rules": {
"eqeqeq": ["error", "smart"],
"no-console": "error",
"prefer-arrow-callback": "error",
"prefer-const": ["error", { "destructuring": "all" }],
"prefer-template": "error",
"quotes": [
"error",
"single",
{ "avoidEscape": true, "allowTemplateLiterals": false }
],
"spaced-comment": [
"error",
"always",
{ "exceptions": ["-", "=", "#__PURE__"], "markers": ["/"] }
],
"no-restricted-globals": [
"error",
"event",
"isNaN",
"location",
"name",
"parseInt"
],
"sort-imports": ["error", { "ignoreDeclarationSort": true }],
"no-return-await": "error",
"import/no-default-export": "error",
"import/no-extraneous-dependencies": "error",
"import/no-unassigned-import": "error",
"import/order": [
"error",
{ "alphabetize": { "order": "asc" }, "newlines-between": "never" }
],
"import/no-duplicates": "error",
"eslint-comments/no-unused-disable": "error",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/explicit-module-boundary-types": "warn",
"@typescript-eslint/member-ordering": "error",
"@typescript-eslint/no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "caughtErrors": "all" }
],
"@typescript-eslint/no-unused-expressions": "error",
"@typescript-eslint/prefer-ts-expect-error": "error",
"@typescript-eslint/prefer-optional-chain": "error",
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/no-explicit-any": "warn",
"jest/expect-expect": "off",
"promise/always-return": "off",
"unicorn/expiring-todo-comments": "warn",
"unicorn/catch-error-name": "error",
"unicorn/filename-case": ["error", { "case": "kebabCase" }],
"react/destructuring-assignment": "error",
"react/jsx-sort-props": "off",
"react/function-component-definition": [
"error",
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],
"react/display-name": "off",
"react/prop-types": "off"
},
"overrides": [
{
"files": ["**/*.ts", "**/*.tsx"],
"rules": {
"@typescript-eslint/no-implicit-any-catch": [
"error",
{ "allowExplicitAny": true }
],
"no-undef": "off"
}
},
{
"files": ["**/*.stories.ts", "**/*.stories.tsx"],
"rules": {
"import/no-default-export": "off"
}
},
{
"files": ["**/generated"],
"rules": {
"@typescript-eslint/array-type": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-unused-vars": "off",
"import/no-duplicates": "off",
"import/order": "off",
"sort-imports": "off"
}
}
]
}