This repository has been archived by the owner on Apr 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
101 lines (101 loc) · 4.24 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"extends": ["tslint-eslint-rules"],
"defaultSeverity": "warning",
"linterOptions": {
"exclude": [
"*.json"
]
},
"rules": {
"align": [ true, "parameters" ],
"array-bracket-spacing": [true, "always", { "singleValue": false, "objectsInArray": false, "arraysInArrays": false }],
"ban": false,
"block-spacing": [true, "always"],
"brace-style": [true, "1tbs"],
"class-name": true,
"comment-format": [true, "check-space"],
"curly": true,
"deprecation": true,
"dot-location": ["error", "property"],
"eofline": true,
"forin": true,
"handle-callback-err": [true, "error"],
"indent": [true, "spaces", 4],
"interface-name": [true, "never-prefix"],
"interface-over-type-literal": true,
"jsdoc-format": true,
"label-position": true,
"linebreak-style": [true, "LF"],
"member-access": [true, "check-accessor", "check-parameter-property"],
"member-ordering": [ true, { "order": [ "static-field", "public-instance-field", "protected-instance-field", "private-instance-field", "constructor", "public-instance-method", "protected-instance-method", "private-instance-method" ] } ],
"no-any": false,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": true,
"no-constant-condition": true,
"no-construct": true,
"no-control-regex": true,
"no-debugger": true,
"no-duplicate-case": true,
"no-duplicate-variable": true,
"no-empty-character-class": true,
"no-empty": [true, "allow-empty-catch"],
"no-eval": true,
"no-ex-assign": true,
"no-extra-boolean-cast": true,
"no-extra-parens": ["all", { "returnAssign": false }],
"no-extra-semi": true,
"no-inner-declarations": true,
"no-invalid-regexp": true,
"no-invalid-this": true,
"no-magic-numbers": false,
"no-multi-spaces": true,
"no-regex-spaces": true,
"no-shadowed-variable": false,
"no-string-literal": true,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unexpected-multiline": true,
"no-unsafe-finally": true,
"no-unused-expression": false,
"no-use-before-declare": true,
"no-var-keyword": true,
"object-curly-spacing": [true, "always", { "arraysInObjects": true, "objectsInObjects": true }],
"object-literal-key-quotes": [true, "as-needed"],
"one-line": [ true, "check-catch", "check-else", "check-open-brace", "check-whitespace" ],
"one-variable-per-declaration": [true, "ignore-for-loop"],
"prefer-const": true,
"prefer-template": true,
"quotemark": [true, "single"],
"radix": true,
"semicolon": [true, "never"],
"space-in-parens": [true, "never"],
"switch-default": true,
"ter-arrow-parens": [true, "as-needed"],
"ter-arrow-spacing": [true],
"ter-func-call-spacing": [true],
"ter-indent": [true, 4],
"ter-max-len": [false, 150],
"ter-no-irregular-whitespace": true,
"ter-no-sparse-arrays": true,
"ter-prefer-arrow-callback": true,
"trailing-comma": [true, {
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "never",
"typeLiterals": "ignore"
},
"singleline": "never"
}],
"triple-equals": true,
"typedef-whitespace": [ true, { "call-signature": "nospace", "index-signature": "nospace", "parameter": "nospace", "property-declaration": "nospace", "variable-declaration": "nospace" } ],
"typedef": [ true, "parameter", "property-declaration" ],
"use-isnan": true,
"valid-typeof": true,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"whitespace": [ true, "check-branch", "check-decl", "check-module", "check-operator", "check-separator", "check-type", "check-typecast" ]
}
}