-
Notifications
You must be signed in to change notification settings - Fork 81
/
tslint.json
42 lines (42 loc) · 1.05 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
40
41
42
{
"defaultSeverity": "error",
"extends": ["tslint:recommended", "tslint-react", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"no-empty": false,
"eofline": false,
"indent": false,
"deprecation": true,
"prefer-const": [
true,
{
"destructuring": "all"
}
],
"encoding": true,
"prefer-template": [true, "allow-single-concat"],
"quotemark": false,
"max-line-length": false,
"trailing-comma": false,
"no-console": false,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-trailing-underscore",
"allow-pascal-case"
],
"no-empty-interface": false,
"max-classes-per-file": false,
"no-trailing-whitespace": false,
"jsx-no-multiline-js": false,
"jsx-boolean-value": [true, "never"],
"jsx-space-before-trailing-slash": true,
"jsx-wrap-multiline": false,
"jsx-curly-spacing": false,
"no-misused-new": false,
"prettier": true,
"jsx-no-lambda": false
},
"rulesDirectory": ["tslint-plugin-prettier"]
}