-
Notifications
You must be signed in to change notification settings - Fork 5
/
tslint.json
62 lines (62 loc) · 1.68 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-eslint-rules",
"tslint-config-airbnb",
"tslint-config-prettier"
],
"linterOptions": {
"exclude": [
"src/generated/**/*",
"test/data/**/*"
]
},
"jsRules": {},
"rules": {
"quotemark": [
true,
"single"
],
"interface-name": false,
"member-ordering": false,
"object-literal-sort-keys": false,
"no-console": false,
"arrow-parens": false,
"max-classes-per-file": false,
"max-line-length": false,
"prefer-array-literal": false,
"interface-over-type-literal": false,
"no-increment-decrement": false,
"ter-indent": [
true,
4,
{
"SwitchCase": 1,
"VariableDeclarator": 1,
"outerIIFEBody": 1
}
],
"ter-no-tabs": true,
"import-name": false,
"no-this-assignment": false,
"curly": true,
"object-curly-spacing": [
true,
"always"
],
"no-trailing-whitespace": true,
"triple-equals": true,
"no-irregular-whitespace": true,
"semicolon": true,
"no-unnecessary-callback-wrapper": true,
"object-literal-key-quotes": [true, "consistent-as-needed"],
"no-multi-spaces": true,
"variable-name": [true, "allow-leading-underscore"],
"no-floating-promises": true,
"no-redundant-jsdoc": true,
"no-empty-interface": false,
"function-name": [false, {}]
},
"rulesDirectory": []
}