forked from mbman/react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
30 lines (30 loc) · 794 Bytes
/
tslint.json
File metadata and controls
30 lines (30 loc) · 794 Bytes
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
{
"extends": "tslint-config-airbnb",
"rules": {
"arrow-parens": false,
"align": [false],
"import-name": [false],
"linebreak-style": [true, "LF"],
"max-line-length": [false],
"no-increment-decrement": false,
"no-unused-variable": true,
"object-curly-spacing": [false],
"object-shorthand-properties-first": [false],
"quotemark": [false],
"semicolon": [true, "never"],
"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
}
}