-
Notifications
You must be signed in to change notification settings - Fork 45
/
tslint.json
68 lines (68 loc) · 2.03 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
{
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"align": false,
"array-type": false,
"arrow-parens": false,
"ban-types": false,
"callable-types": false,
"class-name": false,
"comment-format": false,
"curly": false,
"indent": false,
"import-spacing": false,
"interface-name": false,
"jsdoc-format": false,
"max-classes-per-file": false,
"max-line-length": false,
"member-access": false,
"member-ordering": false,
"no-angle-bracket-type-assertion": false,
"no-bitwise": false,
"no-console": false,
"no-debugger": false,
"no-empty": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-use-before-declare": false,
"no-var-keyword": false,
"no-var-requires": false,
"no-unused-expression": false,
"one-line": false,
"object-literal-key-quotes": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"one-variable-per-declaration": false,
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-const": false,
"quotemark": false,
"semicolon": false,
"space-before-function-paren": false,
"trailing-comma": false,
"triple-equals": false,
"typedef-whitespace": false,
"variable-name": false,
"whitespace": false,
"cyclomatic-complexity": false,
"adjacent-overload-signatures": true,
"forin": true,
"no-conditional-assignment": true,
// https://github.com/palantir/tslint/issues/2927, https://github.com/palantir/tslint/issues/2021
"prefer-for-of": false,
"typeof-compare": false,
"interface-over-type-literal": false,
"eofline": false,
"no-consecutive-blank-lines": false,
"prefer-readonly": false,
"prefer-while": false,
"newline-per-chained-call": false,
"no-return-await": true,
"no-duplicate-switch-case": true,
"no-trailing-whitespace": [ true, "ignore-blank-lines" ]
},
"rulesDirectory": []
}