-
Notifications
You must be signed in to change notification settings - Fork 6
/
tslint.json
51 lines (50 loc) · 1.25 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
{
"extends": "tslint:recommended",
"rules": {
"class-name": true,
"curly": true,
"eofline": true,
"indent": [true, "spaces"],
"max-line-length": [false],
"no-arg": true,
"no-construct": true,
"no-duplicate-variable": true,
"no-eval": true,
"no-unused-expression": true,
"one-line": [true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"no-bitwise": false,
"object-literal-key-quotes": [
false
],
"no-empty-interface": false,
"no-string-literal": false,
"no-var-requires": false,
"no-shadowed-variable": false,
"no-console": [false],
"space-before-function-paren": false,
"no-empty": false,
"whitespace": [false, "check-typecast"],
"no-namespace": false,
"object-literal-sort-keys": false,
"arrow-parens": false,
"no-trailing-whitespace": false,
"object-literal-shorthand": false,
"only-arrow-functions": [
false
],
"quotemark": [true, "single"],
"semicolon": [true, "always"],
"trailing-comma": [true],
"triple-equals": true,
"variable-name": false,
"ordered-imports": [false],
"member-ordering": [false],
"prefer-for-of": false
},
"rulesDirectory": []
}