-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
58 lines (58 loc) · 1.39 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
{
"defaultSeverity": "error",
"extends": [
"tslint:recommended",
"tslint-config-standard",
"tslint-config-prettier",
"tslint-react"
],
"jsRules": {},
"rules": {
"eofline": true,
"semicolon": [true, "never"],
"ordered-imports": [
true,
{
"import-sources-order": "any",
"named-imports-order": "case-insensitive"
}
],
"object-literal-sort-keys": false,
"member-ordering": false,
"no-console": false,
"no-namespace": false,
"member-access": false,
"interface-over-type-literal": false,
"interface-name": [true, "never-prefix"],
"whitespace": [
true,
"check-branch",
"check-type-operator",
"check-type",
"check-rest-spread",
"check-separator",
"check-module",
"check-decl",
"check-typecast",
"check-operator"
],
"typedef-whitespace": [false],
"object-literal-key-quotes": [true, "as-needed"],
"quotemark": [true, "single", "jsx-double", "avoid-escape"],
"arrow-parens": true,
"no-empty-interface": false,
"strict-type-predicates": false,
"jsx-wrap-multiline": false,
"max-classes-per-file": false,
"max-line-length": [
true,
{
"limit": 80,
"ignore-pattern": "^import |^export {(.*?)}",
"check-strings": true,
"check-regex": true
}
]
},
"rulesDirectory": []
}