-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
34 lines (34 loc) · 781 Bytes
/
tslint.json
File metadata and controls
34 lines (34 loc) · 781 Bytes
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
{
"extends": ["tslint-immutable"],
"rules": {
"no-var-keyword": true,
"no-parameter-reassignment": true,
"typedef": false,
"readonly-keyword": false,
"readonly-array": false,
"no-let": false,
"no-array-mutation": false,
"no-use-before-declare": true,
"radix": true,
"switch-default": true,
"triple-equals": [true, "allow-undefined-check", "allow-null-check"],
"eofline": false,
"indent": [true, "tabs"],
"max-line-length": [true, 250],
"no-trailing-whitespace": true,
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "ignore"
}
}
],
"jsdoc-format": true,
"no-consecutive-blank-lines": [true],
"semicolon": [true, "always"]
}
}