-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
22 lines (22 loc) · 718 Bytes
/
Copy pathtslint.json
File metadata and controls
22 lines (22 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"extends": "tslint-config-airbnb",
"linterOptions": {
"exclude": [
"node_modules/**",
"dist/**"
]
},
"rules": {
"no-boolean-literal-compare": false,
"semicolon": [true, "never"],
"ter-arrow-parens": false,
"arrow-parens": [ true, "ban-single-arg-parens" ],
"trailing-comma": [true, {"multiline": "never", "singleline": "never"}],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"indent": [true, "spaces", 4],
"ter-indent": false,
"max-line-length": [true, 200],
"align": [true, "parameters", "statements"],
"import-name": false
}
}