-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
142 lines (128 loc) · 3.99 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"extends": ["eslint:recommended", "plugin:import/errors", "plugin:promise/recommended"],
"env": {
"browser": true,
"es6": true,
"jest": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"globals": {},
"parser": "typescript-eslint-parser",
"plugins": ["import", "promise"],
"rules": {
// possible errors
"for-direction": "error",
"no-prototype-builtins": "error",
"no-template-curly-in-string": "error",
"no-unsafe-negation": "error",
// best practices
// TODO turn all rules to "error" eventually
"array-callback-return": "error",
"block-scoped-var": "error",
"complexity": "warn",
"consistent-return": "warn",
"eqeqeq": ["error", "smart"],
"guard-for-in": "error",
"no-alert": "error",
"no-caller": "error",
"no-div-regex": "warn",
"no-eval": "error",
"no-extend-native": "error",
"no-extra-bind": "error",
"no-extra-label": "error",
"no-floating-decimal": "error",
"no-implied-eval": "error",
"no-iterator": "error",
"no-labels": "error",
"no-lone-blocks": "error",
"no-loop-func": "error",
"no-new": "warn",
"no-new-func": "error",
"no-new-wrappers": "error",
"no-proto": "error",
"no-restricted-properties": "error",
"no-return-assign": "error",
"no-return-await": "error",
"no-self-compare": "error",
"no-sequences": "error",
"no-throw-literal": "warn",
"no-unmodified-loop-condition": "error",
"no-unused-expressions": "warn",
"no-useless-call": "error",
"no-useless-concat": "warn",
"no-useless-escape": "warn",
"no-useless-return": "warn",
"no-void": "error",
"no-with": "error",
"radix": "error",
"require-await": "error",
"wrap-iife": "error",
"yoda": "warn",
// stylistic
"camelcase": "warn",
"consistent-this": ["warn", "that"],
"func-name-matching": "error",
"func-style": ["warn", "declaration", { "allowArrowFunctions": true }],
"max-depth": "warn",
"max-lines": ["warn", 1000],
"max-params": ["warn", 4],
"no-array-constructor": "warn",
"no-bitwise": "warn",
"no-lonely-if": "error",
"no-multi-assign": "warn",
"no-nested-ternary": "warn",
"no-new-object": "warn",
"no-underscore-dangle": "warn",
"no-unneeded-ternary": "warn",
"one-var": ["warn", "never"],
"operator-assignment": "warn",
// es2015
"no-duplicate-imports": "error",
"no-useless-computed-key": "error",
"no-useless-rename": "error",
"no-var": "error",
"object-shorthand": "error",
"prefer-arrow-callback": "error",
"prefer-const": "error",
"prefer-destructuring": ["warn", { "object": true, "array": false }],
"prefer-numeric-literals": "warn",
"prefer-rest-params": "warn",
"prefer-spread": "warn",
// disabled because of the usage of typescript-eslint-parser
// https://github.com/eslint/typescript-eslint-parser/issues/77
"no-undef": "off",
"no-unused-vars": "off",
// import
"import/extensions": "error",
"import/first": "error",
"import/newline-after-import": "error",
"import/no-absolute-path": "error",
"import/no-amd": "error",
"import/no-deprecated": "error",
"import/no-duplicates": "error",
"import/no-dynamic-require": "error",
"import/no-extraneous-dependencies": "error",
"import/no-mutable-exports": "error",
"import/no-named-as-default": "error",
"import/no-named-as-default-member": "error",
"import/no-named-default": "error",
"import/no-webpack-loader-syntax": "error",
"import/order": ["error", { "groups": ["builtin", "external"], "newlines-between": "never" }],
// does not properly work with ts
"import/no-unresolved": "off",
// promise
"promise/catch-or-return": ["warn", { "allowThen": true }],
"promise/always-return": "off",
"promise/avoid-new": "off"
},
"settings": {
"import/ignore": ["node_modules"]
}
}