-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
44 lines (44 loc) · 1.18 KB
/
tslint.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
{
"rules": {
"no-var-requires": true,
"promise-function-async": true,
"await-promise": true,
"curly": true,
"prefer-for-of": true,
"forin": true,
"no-console": [true, "log", "error"],
"no-debugger": true,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-invalid-template-strings": true,
"no-misused-new": true,
"no-return-await": true,
"no-shadowed-variable": true,
"no-switch-case-fall-through": true,
"no-tautology-expression": true,
"no-unused-variable": true,
"no-var-keyword": true,
"static-this": true,
"switch-default": true,
"triple-equals": true,
"no-duplicate-imports": true,
"no-require-imports": true,
"prefer-const": true,
"arrow-return-shorthand": true,
"class-name": true,
"file-name-casing": [true, "kebab-case"],
"interface-name": [true, "always-prefix"],
"prefer-switch": [true, { "min-cases": 3 }],
"switch-final-break": true,
"import-spacing": true,
"max-line-length": [true, 120],
"no-trailing-whitespace": true,
"quotemark": [true, "single"],
"semicolon": [true, "always"],
"trailing-comma": false,
"indent": [true, "tabs", 4],
"linterOptions": {
"exclude": ["./src/**/*.d.ts"]
}
}
}