-
Notifications
You must be signed in to change notification settings - Fork 3
/
tslint.json
42 lines (42 loc) · 1.13 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
{
"defaultSeverity": "warning",
"extends": ["tslint:recommended", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["node_modules/**"]
},
"rules": {
"quotemark": [false],
"comment-format": [false],
"indent": [true, "spaces", 2],
"class-name": false,
"variable-name": false,
"space-before-function-paren": false,
"import-spacing": false,
"no-floating-promises": false,
"no-empty": false,
"no-var-requires": false,
"curly": false,
"trailing-comma": false,
"semicolon": false,
"interface-name": false,
"ordered-imports": false,
"object-literal-sort-keys": [false],
"no-unused-variable": false,
"no-console": [false],
"no-shadowed-variable": false,
"await-promise": false,
"deprecation": false,
"no-unnecessary-qualifier": false,
"no-unnecessary-type-assertion": false,
"strict-type-predicates": false,
"no-consecutive-blank-lines": false
},
"jsRules": {
"object-literal-sort-keys": false,
"curly": false,
"no-unused-expression": false,
"no-shadowed-variable": false,
"no-empty": false,
"no-console": false
}
}