-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
30 lines (30 loc) · 946 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"array-type": [true, "array"],
"arrow-parens": false,
"callable-types": false,
"eofline": false,
"interface-name": false,
"max-classes-per-file": false,
"member-access": false,
"member-ordering": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"object-literal-shorthand": false,
"object-literal-sort-keys": false,
"object-literal-key-quotes": false,
"only-arrow-functions": false,
"ordered-imports": false,
"quotemark": [false, "single", "avoid-escape"],
"trailing-comma": false,
"typedef-whitespace": false,
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"whitespace": false
},
"rulesDirectory": []
}