-
Notifications
You must be signed in to change notification settings - Fork 4
/
tslint.json
37 lines (37 loc) · 1.12 KB
/
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
35
36
37
{
"extends": [
"tslint-config-standard",
"tslint-react",
"tslint-config-prettier"
],
"defaultSeverity": "error",
"rules": {
"ban-types": false,
"forin": false,
"interface-name": false,
"jsx-alignment": false,
"jsx-boolean-value": false,
"jsx-no-multiline-js": false,
"jsx-self-close": true,
"jsx-wrap-multiline": false,
"member-access": false,
"no-bitwise": false,
"no-conditional-assignment": false,
"no-console": false,
"no-empty": false,
"no-object-literal-type-assertion": false,
"no-string-literal": false,
"no-var-keyword": true,
"object-literal-key-quotes": [ false, "as-needed" ],
"object-literal-sort-keys": false,
"one-variable-per-declaration": false,
"ordered-imports": false,
"prefer-for-of": false,
"quotemark": [ true, "single", "avoid-escape", "jsx-double" ],
"semicolon": [ false, "never" ],
"space-before-function-paren": false,
"trailing-comma": [ true, { "multiline": "never", "singleline": "never" } ],
"variable-name": [ true, "allow-leading-underscore", "ban-keywords" ],
"prefer-const": true
}
}