-
Notifications
You must be signed in to change notification settings - Fork 30
/
.eslintrc
executable file
·76 lines (76 loc) · 1.64 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"globals": {
"$Diff": true,
"__PATH_PREFIX": true
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"parser": "@typescript-eslint/parser",
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"prettier"
],
"rules": {
"prettier/prettier": 2,
"block-scoped-var": 0,
"camelcase": 0,
"consistent-return": 0,
"default-case": 0,
"func-names": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"max-len": 0,
"new-cap": 0,
"no-bitwise": 0,
"no-cond-assign": 0,
"no-continue": 0,
"no-mixed-spaces-and-tabs": 0,
"no-multi-assign": 0,
"no-nested-ternary": 0,
"no-param-reassign": 0,
"no-plusplus": 0,
"no-proto": 0,
"no-redeclare": 0,
"no-restricted-properties": 0,
"no-restricted-syntax": 0,
"no-return-assign": 0,
"no-sequences": 0,
"no-shadow": 0,
"no-sparse-arrays": 0,
"no-tabs": 0,
"no-underscore-dangle": 0,
"no-unreachable": 0,
"no-unused-expressions": 0,
"no-use-before-define": 0,
"no-var": 0,
"no-void": 0,
"prefer-destructuring": 0,
"vars-on-top": 0
},
"overrides": [{
"files": [
"**/test/*.js",
"**/test/*.ts",
"**/*.spec.js",
"**/*.spec.ts",
"**/*.test.js",
"**/*.test.ts"
],
"rules": {
"import/extensions": 0,
"import/no-unresolved": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"max-len": 0,
"no-console": 0,
"no-undef": 0
}
}]
}