-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
64 lines (64 loc) · 1.35 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
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"ecmaFeatures": {
"ts": true
},
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"jest"
],
"rules": {
"no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^data$|^value$|^id$|^object$|^options$"
}
],
"no-debugger": "off",
"no-console": "off",
"no-param-reassign": "off",
"no-var": 1,
"camelcase": 1,
"no-nested-ternary": 1,
"no-template-curly-in-string": 1,
"no-self-compare": 1,
"import/no-unresolved": "off",
"import/extensions": "off",
"import/no-extraneous-dependencies": "off",
"no-new": "off",
"no-loss-of-precision": "off",
"nonblock-statement-body-position": "error",
"semi": [
1
],
"max-len": [
"error",
{
"ignoreUrls": true,
"ignoreComments": true,
"ignoreRegExpLiterals": true,
"code": 100
}
],
"jest/no-disabled-tests": "warn",
"jest/no-focused-tests": "error",
"jest/no-identical-title": "error",
"jest/prefer-to-have-length": "warn",
"jest/valid-expect": "error"
},
"extends": [
"airbnb-base"
],
"env": {
"es2021": true,
"browser": true,
"node": true,
"commonjs": true,
"jquery": true,
"jest/globals": true
}
}