-
Notifications
You must be signed in to change notification settings - Fork 2
/
tslint.json
46 lines (46 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
{
"extends": [
"tslint:recommended",
"tslint-config-airbnb",
"tslint-config-prettier"
],
"rules": {
"no-var-requires": false,
"function-name": false,
"import-name": false,
"import-spacing": true,
"interface-name": false,
"max-line-length": [true, 120],
"member-access": true,
"newline-before-return": true,
"no-boolean-literal-compare": false,
"no-debugger": true,
"no-empty-interface": false,
"no-implicit-dependencies": false,
"no-trailing-whitespace": [true, "ignore-comments"],
"no-unused-expression": true,
"no-unused-variable": [true, { "ignore-pattern": "^_" }],
"object-literal-sort-keys": false,
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"named-imports-order": "lowercase-last",
"module-source-path": "full"
}
],
"semicolon": true,
"strict-boolean-expressions": false,
"ter-indent": 4,
"trailing-comma": [
true,
{
"multiline": "always",
"esSpecCompliant": true
}
],
"typedef": [true, "call-signature", "property-declaration"],
"variable-name": false
},
"linterOptions": {}
}