-
Notifications
You must be signed in to change notification settings - Fork 5
/
tslint.json
28 lines (28 loc) · 934 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
{
"defaultSeverity": "warning",
"extends": ["tslint-config-standard", "tslint-react"],
"rules": {
"align": [true, "parameters", "statements"],
"indent": [true, "spaces", 2],
"interface-name": [true, "never-prefix"],
"jsx-boolean-value": [true, "never"],
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-no-string-ref": true,
"max-classes-per-file": true,
"max-line-length": [true, 100],
"member-ordering": [true, "static-before-instance"],
"member-access": [true, "check-accessor", "check-constructor", "check-parameter-property"],
"no-any": false,
"no-bitwise": false,
"no-console": false,
"no-construct": true,
"no-debugger": true,
"no-empty-interface": false,
"no-floating-promises": false,
"no-shadowed-variable": true,
"no-string-literal": true,
"padded-blocks": [true, { "classes": "always" }],
"switch-default": true
}
}