-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtslint.json
64 lines (64 loc) · 1.25 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
59
60
61
62
63
64
{
"extends": [
"tslint-microsoft-contrib",
"tslint-import-group-ordering"
],
"jsRules": {},
"rules": {
"matching-rules": [
{
"type": "dependencies",
"imports-group": "dependencies",
"disable-native-nodejs-modules": false,
"from-package.json": true
},
{
"type": "project",
"matches": ".*",
"imports-group": "other"
}
],
"align": false,
"promise-function-async": false,
"indent": [
true,
"tabs"
],
"no-unsafe-any": false,
"completed-docs": false,
"missing-jsdoc": false,
"no-relative-imports": false,
"trailing-comma": [
true,
{
"multiline": "always",
"singleline": "never"
}
],
"no-parameter-properties": false,
"no-backbone-get-set-outside-model": false,
"no-submodule-imports": [
true,
"@streamjar/database"
],
"export-name": false,
"strict-boolean-expressions": [
false
],
"await-promise": [
true,
"Bluebird",
"PromiseLike"
],
"no-non-null-assertion": false,
"newline-per-chained-call": false,
"no-null-keyword": false,
"function-name": false,
"no-any": false,
"no-import-side-effect": false,
"no-reserved-keywords": false,
"underscore-consistent-invocation": false,
"non-literal-fs-path": false
},
"rulesDirectory": []
}