-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtslint.json
67 lines (63 loc) · 2.48 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
{
"extends": [ "tslint-eslint-rules", "tslint:recommended" ],
"rules": {
"indent": [ true, "tabs" ],
"brace-style": [ true, "stroustrup" ],
"one-line": [ true, "check-open-brace" ],
"whitespace": [ true, "check-decl", "check-operator", "check-separator", "check-preblock" ],
"array-bracket-spacing": [ true, "always" ],
"object-curly-spacing": [ true, "always" ],
"space-before-function-paren": [ true, "never" ],
"quotemark": [ true, "double" ],
"trailing-comma": [ true, { "multiline": "never", "singleline": "never" } ],
"triple-equals": true,
"no-duplicate-case": true,
"no-extra-semi": true,
"no-duplicate-variable": true,
"no-unused-expression": true,
"no-sparse-arrays": true,
"ter-func-call-spacing": [ true, "never" ],
"no-shadowed-variable": false,
"space-within-parens": [ true, 1 ],
"no-trailing-whitespace": [ true, "ignore-blank-lines", "ignore-comments" ],
"ter-padded-blocks": [ true, "never" ],
"max-line-length": [ true, 180 ],
"object-literal-sort-keys": false,
"eofline": false,
"no-trailing-whitespace": false,
"no-bitwise": false,
"no-empty": false,
"typedef": [ true, "call-signature", "arrow-call-signature", "parameter", "arrow-parameter", "member-variable-declaration", "member-variable-declaration", "property-declaration" ],
"member-ordering": [ true, { "order": [ "static-field", "instance-field", "constructor" ] } ],
"interface-name": false,
"no-namespace": false,
"ordered-imports": false
},
"jsRules": {
"indent": [ true, "tabs" ],
"brace-style": [ true, "stroustrup" ],
"one-line": [ true, "check-open-brace" ],
"whitespace": [ true, "check-decl", "check-operator", "check-separator", "check-preblock" ],
"array-bracket-spacing": [ true, "always" ],
"object-curly-spacing": [ true, "always" ],
"space-before-function-paren": [ true, "never" ],
"quotemark": [ true, "double" ],
"trailing-comma": [ true, { "multiline": "never", "singleline": "never" } ],
"triple-equals": true,
"no-duplicate-case": true,
"no-extra-semi": true,
"no-duplicate-variable": true,
"no-unused-expression": true,
"ter-func-call-spacing": [ true, "never" ],
"no-shadowed-variable": false,
"space-within-parens": [ true, 1 ],
"no-trailing-whitespace": [ true, "ignore-blank-lines", "ignore-comments" ],
"ter-padded-blocks": [ true, "never" ],
"max-line-length": [ true, 180 ],
"object-literal-sort-keys": false,
"eofline": false,
"no-trailing-whitespace": false,
"no-bitwise": false,
"no-empty": false
}
}