-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
34 lines (34 loc) · 1021 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
33
34
{
"extends": ["tslint:recommended", "tslint-react"],
"defaultSeverity": "warning",
"rules": {
"arrow-parens": false,
"indent": [true, "spaces", 4],
"jsx-boolean-value": false,
"jsx-no-multiline-js": false,
"max-classes-per-file": false,
"max-line-length": [true, 100],
"member-access": false,
"no-bitwise": false,
"semicolon": [true, "ignore-bound-class-methods"],
"no-consecutive-blank-lines": [true, "error"],
"no-console": false,
"object-literal-sort-keys": false,
"trailing-comma": [true, { "esSpecCompliant": true }],
"ordered-imports": false,
"variable-name": [
true,
"check-format",
"allow-leading-underscore",
"allow-pascal-case",
"ban-keywords"
],
"quotemark": [
true,
"single",
"jsx-double",
"avoid-escape",
"avoid-template"
]
}
}