This repository has been archived by the owner on Sep 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
46 lines (46 loc) · 1.7 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
{
"extends": ["tslint:latest", "tslint-react"],
"rules": {
"arrow-parens": false,
"array-type": [true, "array"],
"interface-name": [false, "always-prefix"],
"jsx-alignment": true,
"jsx-no-lambda": true,
"jsx-no-multiline-js": false,
"jsx-no-string-ref": true,
"jsx-self-close": true,
"jsx-boolean-value": false,
"jsx-wrap-multiline": false,
"max-classes-per-file": [false],
"member-ordering": [false],
"no-console": [true, "log", "assert", "debug", "info", "profile", "time", "trace"],
"no-var-requires": false,
"no-empty-interface": 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"],
"semicolon": [true, "always", "ignore-bound-class-methods"],
"no-this-assignment": [true, {"allow-destructuring": true}],
"jsx-curly-spacing": "never"
},
"jsRules": {
"arrow-parens": false,
"array-type": [true, "array"],
"interface-name": [false, "always-prefix"],
"jsx-alignment": true,
"jsx-no-lambda": true,
"jsx-no-multiline-js": false,
"jsx-no-string-ref": true,
"jsx-self-close": true,
"jsx-wrap-multiline": false,
"max-classes-per-file": [false],
"member-ordering": [false],
"no-var-requires": 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"]
},
"rulesDirectory": []
}