-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathtslint.json
34 lines (33 loc) · 948 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
29
30
31
32
33
{
"extends": "tslint:recommended",
"rules": {
"align": [ false ],
"arrow-parens": [ false ],
"curly": [ true, "ignore-same-line" ],
"forin": [ false ],
"max-classes-per-file": [ false ],
"member-access": [ false ],
"member-ordering": [ false ],
"no-console": [ false ],
"no-shadowed-variable": [ false ],
"no-unused-expression": [ true, "allow-fast-null-checks" ],
"object-literal-sort-keys": false,
"ordered-imports": [ false ],
"prefer-for-of": [ false ],
"prefer-method-signature": [ true ],
"quotemark": [ true, "single" ],
"semicolon": [ true, "always" ],
"space-before-function-paren": [ true, "never" ],
"switch-default": [ true ],
"trailing-comma": [ true, {
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "ignore",
"typeLiterals": "ignore"
}
}
],
"variable-name": [ false ]
}
}