-
Notifications
You must be signed in to change notification settings - Fork 17
/
tslint.json
42 lines (41 loc) · 1.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
{
"lintOptions": {
"typeCheck": true
},
"extends": ["tslint:all"],
"linterOptions": {
"exclude": [
"**/fixtures/**"
]
},
"rules": {
"completed-docs": false,
"interface-name": false,
"interface-over-type-literal": false,
"max-line-length": false,
"newline-before-return": false,
"newline-per-chained-call": false,
"no-implicit-dependencies": false,
"no-non-null-assertion": false,
"no-null-keyword": false,
"no-object-literal-type-assertion": false,
"no-parameter-properties": false,
"no-require-imports": false,
"no-this-assignment": false,
"only-arrow-functions": false,
"ordered-imports": false,
"prefer-function-over-method": false,
"strict-boolean-expressions": [false],
"align": [true, "parameters", "elements", "members", "statements"],
"array-type": [true, "generic"],
"arrow-parens": [true, "ban-single-arg-parens"],
"comment-format": [true, "check-space"],
"file-name-casing": [true, "kebab-case"],
"quotemark": [true, "single"],
"space-before-function-paren": [true, "always"],
"trailing-comma": [true, "never"],
"triple-equals": [true, "allow-null-check"],
"typedef": [true, "call-signature", "arrow-call-signature", "parameter"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"]
}
}