-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
173 lines (173 loc) · 5.18 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
// "root": true,
"extends": [
"airbnb-typescript",
"airbnb/hooks",
"plugin:@typescript-eslint/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended"
],
"plugins": ["react", "@typescript-eslint", "jest"],
"env": {
"es6": true,
"jest": true
},
"globals": {
"$": true,
"document": true,
"fetch": true,
"localStorage": true,
"mount": true,
"shallow": true,
"window": true,
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"tsconfigRootDir": "",
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"rules": {
"comma-dangle": ["error", "never"],
"arrow-body-style": ["error", "always"],
"arrow-parens": ["error", "always"],
"camelcase": "off",
"function-paren-newline": ["error", "multiline-arguments"], // if one attribute is one a new line, the first one should be to
// Mute eslint to let @typescript-eslint trigger the errors
"no-unused-vars": "off",
"import/order": "off",
"prefer-destructuring": [
"error",
{
"array": false
}
],
"semi": ["error", "never"], // disallow use trailing semicolons
"no-tabs": "warn",
"eol-last": ["error", "always"],
"indent": [
"error",
2,
{
"VariableDeclarator": 2,
"SwitchCase": 1,
"MemberExpression": 1,
"FunctionDeclaration": {
"body": 1,
"parameters": "first"
},
"CallExpression": {
"arguments": "first"
},
"ArrayExpression": "first",
"ObjectExpression": "first",
"ImportDeclaration": "first"
}
],
"max-len": [
"error",
{
"code": 110,
"ignoreStrings": true,
"ignoreTemplateLiterals": true,
"ignoreComments": true, // allow longer comments
"ignoreRegExpLiterals": false,
"ignoreUrls": true
}
],
"newline-per-chained-call": "off",
"no-multiple-empty-lines": "warn",
"no-fallthrough": [
"warn",
{
"commentPattern": "break[\\s\\w]*omitted"
}
], // warn if switch case without break, except there is comment with "break omitted" in the case
"no-multi-spaces": [
"error",
{
"exceptions": {
"ImportDeclaration": true,
"VariableDeclarator": true
}
}
], // cause we dont align by value, there should be no multispaces
"no-unused-expressions": [
"error",
{
"allowTernary": true
}
],
"no-nested-ternary": "off",
"object-curly-newline": [
"error",
{
"consistent": true
}
],
"jsx-quotes": ["error", "prefer-single"],
"no-param-reassign": "off",
//// import rules -> https://github.com/benmosher/eslint-plugin-import
"import/prefer-default-export": 0, // 3rd party librarys sometimes dont have a default export
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
//// typescript rules -> https://github.com/typescript-eslint/typescript-eslint
"@typescript-eslint/member-delimiter-style": [
"error",
{
"multiline": {
"delimiter": "none",
"requireLast": false
}
}
],
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/consistent-type-definitions": "warn",
"@typescript-eslint/no-unused-vars": "error",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/ban-types": "off",
// jest rules -> https://github.com/jest-community/eslint-plugin-jest
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/valid-expect": "error",
"jest/no-deprecated-functions": "off",
// jsx rules -> https://github.com/evcohen/eslint-plugin-jsx-a11y
"jsx-a11y/anchor-has-content": "off",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/click-events-have-key-events": "off",
// "jsx-a11y/href-no-hash": "off", // removed from jsx-a11y
"jsx-a11y/no-noninteractive-element-interactions": "off", // to increase future coding, raise a warning when onclick on somethin like a div tag
// "jsx-a11y/label-has-for": [2, { "required": { "every": ["id"] } }], // depracted
"jsx-a11y/label-has-associated-control": "off",
"jsx-a11y/no-autofocus": "off",
//// react rules -> https://github.com/yannickcr/eslint-plugin-react
"react/jsx-filename-extension": [
"warn",
{
"extensions": [".js", ".ts", ".tsx"]
}
],
"react/prop-types": "off", // would be nice but to many props are missing currently
"react/require-default-props": "warn", // TODO: Set to error
"react/destructuring-assignment": "warn",
"react/jsx-props-no-spreading": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
}
}