-
Notifications
You must be signed in to change notification settings - Fork 1
/
tslint.json
42 lines (42 loc) · 1.12 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
{
"extends": [
"tslint:latest",
"tslint-plugin-prettier",
"tslint-config-prettier"
],
"rules": {
"prettier": true,
"object-literal-sort-keys": false,
"no-submodule-imports": false,
"interface-name": false,
"max-classes-per-file": false,
"no-empty": false,
"no-console": false,
"only-arrow-functions": false,
"variable-name": [
true,
"check-format",
"allow-leading-underscore",
"allow-pascal-case"
],
"ordered-imports": [
true,
{
"grouped-imports": true,
"import-sources-order": "case-insensitive"
}
],
"no-floating-promises": true,
"prefer-conditional-expression": false,
"no-implicit-dependencies": [true, "dev"],
"max-line-length": [
true,
{
"limit": 160,
"ignore-pattern": "^import |^export {(.*?)}",
"check-strings": true,
"check-regex": true
}
]
}
}