-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
36 lines (35 loc) · 1.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
{
"extends": ["tslint:latest", "tslint-config-airbnb"],
"rulesDirectory": ["node_modules/tslint-lines-between-class-members"],
"rules": {
"align": false,
"prefer-conditional-expression": false,
"prefer-const": true,
"ter-arrow-parens": false,
"quotemark": [true, "single"],
"no-var-requires": false,
"no-implicit-dependencies": false,
"no-submodule-imports": false,
"object-literal-sort-keys": false,
"jsx-alignment": false,
"variable-name": false,
"import-name": false,
"no-console": false,
"object-shorthand-properties-first": false,
"ordered-imports": false,
"no-empty-interface": false,
"no-empty": false,
"max-classes-per-file": false,
"max-line-length": [true, 150],
"array-type": [true, "array"],
"eofline": true,
"indent": [true, "spaces"],
"lines-between-class-members": true,
"member-ordering": false,
"no-unused-expression": false
},
"linterOptions": {
"exclude": [
]
}
}