-
Notifications
You must be signed in to change notification settings - Fork 5
/
tslint.json
70 lines (70 loc) · 2.42 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
63
64
65
66
67
68
69
70
{
"extends": "tslint:recommended",
"linterOptions": { "exclude": ["webpack*.config.ts"] },
"rules": {
"align": false,
"await-promise": true,
"ban-comma-operator": true,
"deprecation": true,
"encoding": true,
"interface-name": [true, "never-prefix"],
"jsdoc-format": false,
"max-classes-per-file": false,
"max-line-length": { "options": [120] },
"member-ordering": [true, { "order": [
"static-field",
"instance-field",
"constructor",
"static-method",
"instance-method"
]}],
"no-boolean-literal-compare": true,
"no-consecutive-blank-lines": false,
"no-console": false,
"no-duplicate-switch-case": true,
"no-empty-interface": false,
"no-for-in-array": true,
"no-implicit-dependencies": true,
"no-inferred-empty-object-type": true,
"no-invalid-template-strings": true,
"no-irregular-whitespace": true,
"no-non-null-assertion": true,
"no-object-literal-type-assertion": true,
"no-parameter-reassignment": true,
"no-redundant-jsdoc": true,
"no-require-imports": true,
"no-return-await": true,
"no-sparse-arrays": true,
"no-switch-case-fall-through": true,
"no-this-assignment": true,
"no-unbound-method": [true, "ignore-static"],
"no-unnecessary-callback-wrapper": true,
"no-unnecessary-initializer": false,
"no-unnecessary-qualifier": true,
"no-unnecessary-type-assertion": true,
"no-void-expression": true,
"object-literal-key-quotes": [true, "always"],
"object-literal-shorthand": false,
"one-line": false,
"prefer-method-signature": true,
"prefer-object-spread": true,
"prefer-readonly": true,
"promise-function-async": true,
"quotemark": [true, "single"],
"space-before-function-paren": { "options": {
"anonymous": "always",
"asyncArrow": "always",
"constructor": "never",
"method": "never",
"named": "never"
}},
"strict-type-predicates": true,
"switch-default": true,
"switch-final-break": [true, "always"],
"trailing-comma": [true, {
"multiline": "never",
"singleline": "never"
}],
"typedef": true
}
}