-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
28 lines (28 loc) · 911 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
{
"extends": ["tslint:latest", "tslint-config-prettier", "tslint-config-airbnb", "tslint-react"],
"rules": {
"max-line-length": {
"options": [120]
},
"object-literal-sort-keys": false,
"no-submodule-imports": false,
"member-ordering": false,
"ordered-imports": false,
"no-this-assignment": false,
"no-implicit-dependencies": false,
"no-increment-decrement": false,
"no-namespace": false,
"trailing-comma": false,
"variable-name": false,
"import-name": false,
"align": false,
"ter-arrow-parens": [true, "as-needed", { "requireForBlockBody": false }],
"jsx-no-multiline-js": false,
"jsx-no-lambda": false,
"jsx-no-bind": false,
"no-empty": [true, "allow-empty-catch", "allow-empty-functions"],
"no-duplicate-imports": [true, {"allow-namespace-imports": true}],
"no-bitwise": false,
"prefer-object-spread": false
}
}