-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtslint-config.json
More file actions
36 lines (36 loc) · 950 Bytes
/
tslint-config.json
File metadata and controls
36 lines (36 loc) · 950 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
{
"defaultSeverity": "error",
"extends": [
"tslint-config-airbnb",
"tslint-config-prettier",
"tslint-react"
],
"rules": {
"import-name": false,
"jsx-boolean-value": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"member-ordering": false,
"no-boolean-literal-compare": true,
"no-implicit-dependencies": [true, "dev"],
"no-submodule-imports": [false],
"object-curly-spacing": [true, "always"],
"object-literal-sort-keys": [true, "shorthand-first"],
"semicolon": [true, "never"],
"ter-arrow-parens": [false],
"trailing-comma": [true,
{
"multiline": {
"arrays": "always",
"exports": "always",
"functions": "always",
"imports": "always",
"objects": "always",
"typeLiterals": "ignore"
},
"singleline": "never"
}
],
"variable-name": [true, "allow-pascal-case"]
}
}