forked from sfakir/feiertagejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
55 lines (51 loc) · 1.42 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
{
"rulesDirectory": "node_modules/tslint-microsoft-contrib",
"extends": [
"tslint-config-airbnb",
"tslint-microsoft-contrib",
"tslint-config-prettier",
"tslint-plugin-prettier"
],
"rules": {
"prettier": true,
// imports/exports
"ordered-imports": [true, { "grouped-imports": true }],
"import-blacklist": [true, "rxjs/Rx", "lodash", "lodash-es"],
"no-implicit-dependencies": [true, "dev"],
"no-relative-imports": false,
"export-name": false,
// ts specific
"member-access": false,
"no-any": false,
"member-ordering": false,
// functionality
"curly": true,
"no-unnecessary-class": false,
"no-unsafe-any": false,
"no-void-expression": false,
"strict-boolean-expressions": false,
"no-submodule-imports": false,
// style
"array-type": [true, "array"],
"comment-format": false,
"completed-docs": false,
"interface-name": false,
"missing-jsdoc": false,
"newline-before-return": false,
"no-angle-bracket-type-assertion": true,
"prefer-type-cast": false,
"no-multiline-string": false,
"no-parameter-properties": false,
"no-stateless-class": false,
"no-backbone-get-set-outside-model": false,
"newline-per-chained-call": false,
"no-redundant-jsdoc": false,
"typedef": [
true,
"call-signature",
"parameter",
"member-variable-declaration"
],
"no-invalid-this": false
}
}