-
Notifications
You must be signed in to change notification settings - Fork 12
/
tslint.json
39 lines (37 loc) · 1.04 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
38
39
{
"extends": ["tslint:recommended", "tslint-config-prettier"],
"rules": {
"await-promise": false,
"interface-name": [true, "never-prefix"],
"jsx-alignment": false,
"jsx-boolean-value": false,
"jsx-curly-spacing": false,
"jsx-no-multiline-js": false,
"jsx-wrap-multiline": false,
"variable-name": [
true,
"allow-leading-underscore",
"allow-trailing-underscore",
"ban-keywords",
"check-format"
],
"max-classes-per-file": false,
"member-ordering": false,
"no-bitwise": false,
"no-console": false,
"no-empty": false,
"no-empty-interface": false,
"no-unused-variable": false,
"no-use-before-declare": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"prefer-const": true,
"semicolon": false,
"space-before-function-paren": false,
"strict-type-predicates": false,
"ter-func-call-spacing": false,
"ter-indent": false
},
"rulesDirectory": ["./node_modules/tslint-microsoft-contrib"]
}