-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
87 lines (86 loc) · 2.76 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
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
{
"env": { "browser": true, "es2021": true, "node": true },
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"airbnb-base",
"airbnb-typescript/base",
"plugin:import/recommended",
"plugin:import/typescript",
"prettier"
],
"ignorePatterns": ["*dist*"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"project": true,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "import"],
"root": true,
"overrides": [
{
"files": ["*.ts"],
"rules": {
"@typescript-eslint/array-type": ["error", { "default": "array" }],
"@typescript-eslint/explicit-function-return-type": "error",
"@typescript-eslint/lines-between-class-members": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unnecessary-type-assertion": "error",
"@typescript-eslint/no-unused-vars": 0,
"block-spacing": ["warn", "always"],
"curly": ["warn", "all"],
"eol-last": "error",
"import/prefer-default-export": 0,
"import/no-unresolved": "error",
"max-len": ["error", { "code": 120, "ignoreComments": true, "tabWidth": 2, "ignoreStrings": true }],
"max-lines-per-function": ["error", 80],
"max-classes-per-file": "off",
"no-console": 0,
"no-debugger": 0,
"no-multiple-empty-lines": ["error", { "max": 2, "maxBOF": 0, "maxEOF": 1 }],
"no-param-reassign": ["error", { "props": false }],
"no-plusplus": 0,
"no-return-assign": 1,
"no-restricted-syntax": ["off", "ForInStatement"],
"no-underscore-dangle": "off",
"no-template-curly-in-string": "warn",
"no-unused-vars": 0,
"object-curly-spacing": ["warn", "always"],
"spaced-comment": ["error", "always", { "markers": ["!", "?", "//", "todo", "*"] }],
"class-methods-use-this": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/explicit-member-accessibility": [
"error",
{
"accessibility": "explicit",
"overrides": {
"accessors": "explicit",
"constructors": "off",
"methods": "explicit",
"properties": "explicit",
"parameterProperties": "explicit"
}
}
]
}
},
{
"files": ["*.spec.ts", "*.test.ts"],
"rules": {
"max-lines-per-function": "off"
}
}
],
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx"]
},
"import/resolver": {
"typescript": {
"project": "packages/*/tsconfig.json"
}
}
}
}