-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint.json
More file actions
36 lines (35 loc) · 1010 Bytes
/
Copy pathtslint.json
File metadata and controls
36 lines (35 loc) · 1010 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
31
32
33
34
35
36
{
"extends": ["tslint-config-airbnb", "tslint-react"],
"rules": {
"function-name": false,
"import-name": false,
"interface-name": [true, "never-prefix"],
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"no-consecutive-blank-lines": [true, 2],
"no-var-keyword": true,
"no-parameter-reassignment": true,
"no-trailing-whitespace": [true, "ignore-blank-lines", "ignore-comments"],
"object-curly-spacing": false,
"object-shorthand-properties-first": false,
"quotemark": [true, "single", "avoid-escape"],
"semicolon": [true, "always", "strict-bound-class-methods"],
"ter-arrow-parens": [true, "as-needed"],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "never"
},
"singleline": {
"objects": "never",
"arrays": "never",
"functions": "never"
}
}
],
"variable-name": false
}
}