-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
53 lines (53 loc) · 1.03 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
{
"extends": [
"airbnb-typescript-prettier"
],
"rules": {
"max-len": [
"error",
120
],
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"react/*": "off",
"object-shorthand-properties-first": "off",
"radix": "off",
"strict-boolean-expressions": "off",
"import/prefer-default-export": "off",
"import/no-unresolved": "off",
"no-continue": "off",
"no-param-reassign": "off",
"no-await-in-loop": "off",
"no-use-before-define": "off",
"class-methods-use-this": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"no-restricted-syntax": [
"error",
{
"selector": "ForInStatement",
"message": "Do not use for..in statement."
},
{
"selector": "LabeledStatement",
"message": "Do not use labeled statement."
},
{
"selector": "WithStatement",
"message": "Do not use with statement."
}
],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"arrowParens": "avoid"
}
]
}
}