-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
30 lines (30 loc) · 912 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
{
"extends": "tslint:recommended",
"rules": {
"array-type": false,
"curly": [ true, "ignore-same-line" ],
"deprecation": true,
"file-name-casing": [ true, "kebab-case" ],
"forin": false,
"indent": [ true, "tabs", 2 ],
"interface-name": false,
"max-classes-per-file": false,
"member-access": false,
"no-angle-bracket-type-assertion": false,
"no-console": false,
"no-empty": false,
"no-empty-interface": false,
"no-shadowed-variable": false,
"no-unused-variable": true,
"no-var-requires": false,
"number-literal-format": true,
"object-literal-sort-keys": false,
"only-arrow-functions": false,
"arrow-parens": [ true ],
"ordered-imports": false,
"quotemark": [ true, "single" ],
"trailing-comma": false,
"max-line-length": [ true, 200 ],
"whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type" ]
}
}