-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
39 lines (39 loc) · 1.37 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
{
"root": true,
"env": {
"node": true
},
"ignorePatterns": ["**/lib/*"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "import-newlines"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"@typescript-eslint/array-type": ["error", {"default": "generic"}],
"@typescript-eslint/consistent-type-assertions": [
"error",
{"assertionStyle": "as", "objectLiteralTypeAssertions": "never"}
],
"block-spacing": "error",
"brace-style": ["error", "1tbs"],
"comma-dangle": ["error", "never"],
"comma-spacing": ["error", {"before": false, "after": true}],
"dot-location": ["error", "property"],
"eol-last": ["error", "always"],
"eqeqeq": "error",
"func-call-spacing": "error",
"func-style": ["error", "declaration", {"allowArrowFunctions": true}],
"import-newlines/enforce": ["error", {"items": 3, "max-len": 120, "semi": false}],
"indent": ["error", 2, {"SwitchCase": 1}],
"max-len": ["error", 120],
"no-multi-spaces": "error",
"no-multiple-empty-lines": ["error", {"max": 1}],
"no-trailing-spaces": "error",
"object-curly-spacing": ["error", "never"],
"quotes": ["error", "double", {"allowTemplateLiterals": true, "avoidEscape": true}],
"semi": ["error", "never"]
}
}