-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc.js
58 lines (58 loc) · 1.68 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
/* eslint-env node */
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
ecmaFeatures: {
jsx: true
}
},
settings: {
react: {
version: "detect"
}
},
plugins: [
"react",
"@typescript-eslint",
"react-hooks"
],
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
],
rules: {
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
"react-hooks/rules-of-hooks": "error",
"@typescript-eslint/ban-types": [
"error",
{
"types": {
"Object": "Avoid using the `Object` type. Did you mean `object`?",
"Boolean": "Avoid using the `Boolean` type. Did you mean `boolean`?",
"Number": "Avoid using the `Number` type. Did you mean `number`?",
"String": "Avoid using the `String` type. Did you mean `string`?",
"Symbol": "Avoid using the `Symbol` type. Did you mean `symbol`?",
"Function": false,
"object": false,
"{}": false,
}
}
],
"react-hooks/exhaustive-deps": "warn",
"max-len": [2, { "code": 150, "ignoreUrls": true }],
"no-redeclare": "error",
"camelcase": "error",
"jsx-quotes": ["error", "prefer-double"],
"padding-line-between-statements": [
"error",
{ blankLine: "always", prev: "*", next: "return" },
{ blankLine: "always", prev: ["const", "let", "var"], next: "*"},
{ blankLine: "any", prev: ["const", "let", "var"], next: ["const", "let", "var"]},
],
},
};