-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.json
26 lines (26 loc) · 806 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
{
"extends": "tslint:latest",
"rules": {
"curly": false,
"max-classes-per-file": false,
"semicolon": [true, "always", "ignore-interfaces"],
"quotemark": [true, "single", "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": [true, 200],
"switch-default": false,
"prefer-for-of": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"no-implicit-dependencies": [true, "dev"],
"no-submodule-imports": [true, "music-metadata", "strtok3"],
"ordered-imports": false
},
"jsRules": {
"curly": false
},
"rulesDirectory": [
]
}