-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
31 lines (31 loc) · 961 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
{
"extends": ["tslint-config-airbnb", "tslint-config-prettier"],
"rules": {
"ter-indent": 4,
"import-name": false,
"no-unused-variable": [true, { "ignore-pattern": "^_" }],
"no-boolean-literal-compare": false,
"no-trailing-whitespace": [true, "ignore-comments"],
"strict-boolean-expressions": false,
"max-line-length": [true, 120],
"variable-name": false,
"function-name": false,
"member-access": true,
"newline-before-return": true,
"typedef": [
true,
"call-signature",
"parameter",
"member-variable-declaration"
],
"ordered-imports": [
true,
{
"import-sources-order": "case-insensitive",
"named-imports-order": "lowercase-last",
"module-source-path": "full"
}
],
"no-debugger": true
}
}