forked from thomasnordquist/MQTT-Explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
32 lines (32 loc) · 918 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
32
{
"extends": ["tslint-config-airbnb", "tslint-react", "tslint-react-recommended"],
"rules": {
"semicolon": [true, "never"],
"max-line-length": [true, 200],
"member-access": true,
"no-else-after-return": false,
"align": false,
"jsx-no-lambda": false,
"indent": [true, "spaces", 2],
"import-name": false,
"no-submodule-imports": false,
"array-type": [true, "generic"],
"prefer-array-literal": false,
"function-name": false,
"ter-arrow-parens": [true, "as-needed"],
"variable-name": [true, "ban-keywords", "check-format", "allow-pascal-case"],
"no-implicit-dependencies": [true, "dev", "optional"],
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "never",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
]
}
}