-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtslint.json
64 lines (64 loc) · 1.75 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
63
64
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"quotemark": [true, "single", "avoid-escape", "jsx-double"],
"no-var-requires": false,
"interface-name": [false],
"jsx-alignment": true,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-no-string-ref": true,
"jsx-self-close": true,
"jsx-boolean-value": false,
"jsx-wrap-multiline": false,
"object-literal-sort-keys": false,
"no-console": [
true,
"log",
"assert",
"debug",
"info",
"profile",
"time",
"trace"
],
"no-object-literal-type-assertion": false,
"variable-name": [true, "allow-leading-underscore", "allow-pascal-case"],
"member-ordering": [false],
"object-literal-key-quotes": [false],
"arrow-parens": false,
"no-empty-interface": false,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"no-this-assignment": [true, { "allow-destructuring": true }],
"no-submodule-imports": false,
"trailing-comma": {
"options": {
"multiline": "always",
"singleline": "never",
"esSpecCompliant": true
}
}
},
"jsRules": {
"arrow-parens": false,
"jsx-alignment": true,
"jsx-no-lambda": false,
"jsx-no-multiline-js": false,
"jsx-no-string-ref": true,
"jsx-self-close": true,
"jsx-wrap-multiline": false,
"max-classes-per-file": [false],
"object-literal-key-quotes": [true, "as-needed"],
"object-literal-sort-keys": false,
"quotemark": [true, "single", "avoid-escape", "jsx-double"],
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"no-submodule-imports": false
},
"rulesDirectory": []
}