-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
39 lines (39 loc) · 1.1 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
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-react", "tslint-config-airbnb", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"curly": false,
"function-name": false,
"import-name": false,
"interface-name": false,
"jsx-boolean-value": false,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"member-access": false,
"no-boolean-literal-compare": false,
"no-console": [true, "debug", "dir", "log", "trace", "warn"],
"no-empty-interface": false,
"no-increment-decrement": false,
"no-namespace": false,
"no-reference": false,
"no-unused-variable": true,
"object-literal-sort-keys": false,
"object-shorthand-properties-first": false,
"prefer-array-literal": false,
"prefer-template": false,
"semicolon": false,
"strict-boolean-expressions": false,
"ter-arrow-parens": false,
"ter-indent": false,
"variable-name": [
true,
"allow-leading-underscore",
"allow-pascal-case",
"ban-keywords",
"check-format"
],
"quotemark": false
},
"rulesDirectory": []
}