-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
37 lines (37 loc) · 1 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
{
"extends": ["tslint:recommended", "tslint-eslint-rules", "tslint-config-airbnb"],
"rules": {
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"variable-name": [true, "allow-pascal-case", "ban-keywords"],
"function-name": [false],
"ordered-imports": false,
"object-literal-sort-keys": false,
"interface-name": false,
"one-variable-per-declaration": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"align": false,
"ter-arrow-parens": false,
"object-shorthand-properties-first": false,
"import-name": false,
"no-reference": false,
"ban-types": {
"options": ["String"],
"severity": "warn"
},
"prefer-array-literal": {
"severity": "warning"
},
"triple-equals": {
"severity": "warn"
},
"max-line-length": [true, 120],
"trailing-comma": false,
"no-bitwise": {
"severity": "warn"
},
"comment-format": {
"severity": "warn"
}
},
"defaultSeverity": "error"
}