-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
62 lines (62 loc) · 2 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"defaultSeverity": "error",
"extends": ["tslint:latest", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["./dist"]
},
"jsRules": {},
"rules": {
"prettier": true,
"quotemark": [true, "double"],
"new-parens": true,
"no-arg": true,
"no-bitwise": true,
"no-constant-condition": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": [true, 2],
"no-implicit-dependencies": [false, "dev"],
"no-duplicate-imports": false,
"no-var-keyword": true,
"no-var-requires": true,
"no-submodule-imports": false,
"no-console": false,
"no-this-assignment": false,
"interface-name": false,
"no-object-literal-type-assertion": false,
"no-empty-interface": false,
"only-arrow-functions": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"object-literal-key-quotes": false,
"variable-name": false,
"member-ordering": false,
"member-access": false,
"max-classes-per-file": false,
"prefer-conditional-expression": false,
"trailing-comma": [
true,
{
"multiline": {
"objects": "always",
"arrays": "always",
"functions": "always",
"typeLiterals": "ignore"
},
"esSpecCompliant": true
}
],
"triple-equals": true,
"arrow-parens": [true, "ban-single-arg-parens"],
"object-curly-spacing": true,
"jsx-no-multiline-js": false,
"jsx-key": true,
"jsx-self-close": true,
"jsx-space-before-trailing-slash": true,
"jsx-alignment": true,
"jsx-wrap-multiline": false,
"jsx-no-lambda": false,
"array-type": false,
"radix": false
},
"rulesDirectory": ["node_modules/tslint-eslint-rules/dist/rules"]
}