-
Notifications
You must be signed in to change notification settings - Fork 5
/
.eslintrc.js
113 lines (113 loc) · 2.6 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
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
module.exports = {
env: {
browser: true,
commonjs: true,
es6: true,
jest: true,
node: true,
},
globals: {
page: true,
browser: true,
React: true,
JSX: true,
NodeJS: true,
Electron: true,
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2020,
sourceType: "module",
},
rules: {
allowEmptyCatch: 0,
"no-cond-assign": 0,
"no-console": "off",
"no-redeclare": "warn",
"no-duplicate-imports": "warn",
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn",
"no-undef": "error",
"no-global-assign": "warn",
"no-empty": "warn",
"no-underscore-dangle": "off",
"object-shorthand": 0,
complexity: ["warn", 40],
"max-statements": ["warn", 100],
"react/jsx-no-bind": "off",
"react/jsx-filename-extension": [
1,
{
extensions: [".jsx", ".tsx"],
},
],
"react/require-default-props": [
1,
{
ignoreFunctionalComponents: true,
},
],
eqeqeq: "off",
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/no-noninteractive-element-interactions": "off",
"import/extensions": [
"error",
"ignorePackages",
{
js: "never",
jsx: "never",
ts: "never",
tsx: "never",
},
],
"prettier/prettier": [
"warn",
{
endOfLine: "auto",
},
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ varsIgnorePattern: "^_", argsIgnorePattern: "^_" },
],
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/interface-name-prefix": "off",
"react/react-in-jsx-scope": "off",
"react-hooks/rules-of-hooks": "error",
},
settings: {
"import/core-modules": ["electron"],
"import/resolver": {
node: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
},
"import/ignore:": [".scss$"],
},
parser: "@typescript-eslint/parser",
extends: [
"airbnb-base",
"airbnb/rules/react",
"plugin:react/recommended",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/recommended",
],
plugins: [
"jest",
"jsx-a11y",
"import",
"prettier",
"react",
"react-hooks",
"simple-import-sort",
],
};