forked from migtools/mig-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
43 lines (43 loc) · 1.23 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
{
"extends": [
"tslint:recommended",
"tslint-react",
"tslint-eslint-rules",
"tslint-config-prettier"
],
"rules": {
"max-line-length": {
"options": [120]
},
"new-parens": true,
"no-arg": true,
"no-bitwise": true,
"no-conditional-assignment": true,
"no-consecutive-blank-lines": false,
"no-console": {
"severity": "warning",
"options": ["info", "log", "time", "timeEnd", "trace"]
},
"member-access": false,
"jsx-boolean-value": false,
"jsx-no-multiline-js": false,
"jsx-no-lambda": false,
"arrow-parens": false,
"object-literal-sort-keys": false,
"comment-format": false,
"member-ordering": false,
"jsx-wrap-multiline": false,
"max-classes-per-file": false,
"quotemark": [true, "single", "jsx-double"],
"ordered-imports": false,
"object-literal-key-quotes": false,
"no-string-literal": false,
"variable-name": false,
"semicolon": [true, "always", "ignore-bound-class-methods"]
},
"jsRules": {
"max-line-length": {
"options": [120]
}
}
}