-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.eslintrc.json
44 lines (44 loc) · 906 Bytes
/
.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
{
"env": {
"es6": true,
"node": true
},
"extends": ["airbnb-typescript-prettier"],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"settings": {
"react": {
"version": "999.999.999"
}
},
"rules": {
"camelcase": 0,
"import/prefer-default-export": 0,
"lines-between-class-members": 0,
"no-shadow": 0,
"@typescript-eslint/no-namespace": 0,
"@typescript-eslint/no-shadow": 2,
"no-param-reassign": [
2,
{
"props": false
}
],
"no-unused-vars": 0,
"@typescript-eslint/no-unused-vars": 2,
"no-use-before-define": 0,
"@typescript-eslint/no-use-before-define": [
2,
{
"ignoreTypeReferences": true
}
]
}
}