-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
35 lines (35 loc) · 832 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
33
34
35
{
"extends": [
"tslint:recommended",
"tslint-config-airbnb"
],
"jsRules": {
"object-literal-sort-keys": false
},
"rules": {
"function-name": false,
"prefer-array-literal": false,
"variable-name": [
true,
"allow-leading-underscore",
"ban-keywords"
],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"import-name": false,
"ordered-imports": false,
"no-empty-interface": false,
"ter-arrow-parens": false,
"object-literal-sort-keys": false,
"object-shorthand-properties-first": false,
"interface-name": ["never-prefix"],
"max-line-length": [150],
"no-duplicate-imports": false,
"jsx-no-multiline-js": false,
"cyclomatic-complexity": [
true,
12
],
"no-reference": false
},
"rulesDirectory": []
}