forked from onivim/oni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
41 lines (41 loc) · 1.13 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
{
"extends": "tslint:latest",
"cliOptions": {
"exclude": ["test/ci/*.js"]
},
"rules": {
"align": false,
"arrow-parens": [false],
"max-classes-per-file": [false],
"max-line-length": [false],
"no-implicit-dependencies": false,
"no-object-literal-type-assertion": false,
"no-submodule-imports": false,
"no-reference": false,
"no-namespace": false,
"object-literal-key-quotes": false,
"object-literal-sort-keys": false,
"semicolon": false,
"interface-name": [false],
"variable-name": [
true,
"allow-leading-underscore",
"allow-pascal-case",
"ban-keywords",
"check-format"
],
"whitespace": false,
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
]
}
}