-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
50 lines (50 loc) · 1.53 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
{
"extends": ["tslint:latest"],
"rules": {
"ordered-imports": false,
"jsx-wrap-multiline": false,
"jsx-no-multiline-js": false,
"jsx-no-lambda": false,
"member-access": false,
"trailing-comma": false,
"object-literal-sort-keys": false,
"prefer-conditional-expression": false,
"no-var-requires": false,
"object-literal-shorthand": false,
"no-console": false,
"prefer-for-of": false,
"jsx-boolean-value": false,
"forin": false,
"indent": [true, "spaces", 4],
"quotemark": [true, "double", "avoid-escape"],
"no-implicit-dependencies": false,
"no-unused-expression": [true, "allow-fast-null-checks"],
"max-line-length": [
true,
{
"limit": 200,
"ignore-pattern": "^.*(<svg).*$"
}
],
"interface-name": [true, "never-prefix"],
"array-type": [true, "generic"],
"no-shadowed-variable": [
true,
{
"class": true,
"enum": true,
"function": true,
"interface": false,
"namespace": true,
"typeAlias": false,
"typeParameter": false
}
],
"only-arrow-functions": false,
"no-submodule-imports": false,
"no-string-literal": false,
"interface-over-type-literal": false,
"ban-types": false,
"max-classes-per-file": false
}
}