-
Notifications
You must be signed in to change notification settings - Fork 10
/
.eslintrc.json
65 lines (64 loc) · 1.61 KB
/
.eslintrc.json
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
{
"env": {
"browser": true,
"es2021": true,
"es6": true,
"jasmine": true
},
"extends": [
"plugin:react/recommended",
"airbnb"
],
"globals": {
"jest": false,
"__DEV__": false
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react",
"@typescript-eslint"
],
"rules": {
"import/no-extraneous-dependencies": 0,
"react/destructuring-assignment": 0,
"operator-linebreak": 0,
"react/sort-comp": 0,
"no-multiple-empty-lines": ["error", { "max": 2, "maxEOF": 0 }],
"no-underscore-dangle": 0,
"class-methods-use-this": 0,
"import/extensions": 0,
"no-plusplus": 0,
"no-await-in-loop": 0,
"max-classes-per-file": 0,
"global-require": 0,
"react/jsx-filename-extension": 0
},
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"parser": "@typescript-eslint/parser",
"rules": {
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/consistent-type-imports": [
2,
{ "prefer": "type-imports" }
]
}
}
]
}