-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
41 lines (41 loc) · 1.23 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
{
"extends": ["tslint-config-airbnb"],
"rules": {
"align": false,
"comment-format": false,
"indent": false,
"ter-indent": false,
"max-line-length": false,
"trailing-comma": { "options": { "singleline": "never", "multiline": "never" }},
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-var-keyword": true,
"quotemark": [true, "single", "jsx-double"],
"semicolon": [true, "always"],
"space-before-function-paren": [true, "never"],
"strict-boolean-expressions": false,
"ter-arrow-parens": false,
"arrow-parens": false,
"triple-equals": true,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"no-boolean-literal-compare": false,
"whitespace": [
false,
"check-branch",
"check-decl",
"check-module",
"check-operator",
"check-separator",
"check-type"
],
"import-name": false,
"no-else-after-return": false,
"ter-func-call-spacing": false
}
}