forked from mbman/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
31 lines (31 loc) · 797 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": {
"arrow-parens": false,
"align": [false],
"import-name": [false],
"function-name": false,
"linebreak-style": [true, "LF"],
"max-line-length": [false],
"no-increment-decrement": false,
"object-curly-spacing": [false],
"object-shorthand-properties-first": [false],
"quotemark": [false],
"ter-arrow-parens": [false],
"ter-computed-property-spacing": [false],
"ter-indent": [false],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
],
"variable-name": false
}
}