-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtslint.json
28 lines (28 loc) · 835 Bytes
/
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
{
"extends": "tslint:latest",
"rules": {
"curly": false,
"max-classes-per-file": [false],
"semicolon": [true, "always", "ignore-interfaces"],
"quotemark": [false, "double", "avoid-escape"],
"no-bitwise": false,
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"object-literal-key-quotes": [true, "as-needed"],
"variable-name": [true, "ban-keywords"],
"object-literal-sort-keys": [false],
"max-line-length": false,
"switch-default": false,
"prefer-for-of": false,
"ordered-imports": false,
"forin": false,
"no-implicit-dependencies": false,
"no-conditional-assignment": false,
"no-empty": [true, "allow-empty-functions"],
"no-submodule-imports": [true, "strtok3"]
},
"jsRules": {
"curly": false
},
"rulesDirectory": [
]
}