-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
32 lines (32 loc) · 970 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended"
],
"jsRules": {},
"rules": {
"quotemark": [true, "single", "jsx-double"],
"ordered-imports": [false],
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"object-literal-sort-keys": false,
"member-access": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"curly": [true, "ignore-same-line"],
"no-string-literal": false,
"arrow-parens": [true, "ban-single-arg-parens"],
"no-empty-interface": false,
"semicolon": [true, "always", "ignore-interfaces"],
"eofline": false,
"no-shadowed-variable": false,
"array-type": [true, "array"],
"no-empty": false,
"object-literal-shorthand": false,
"no-var-requires": false,
"no-console": [false],
"interface-name": [false],
"no-reference": false,
"interface-over-type-literal": false,
"no-eval": false
},
"rulesDirectory": []
}