This repository was archived by the owner on Oct 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtslint.json
More file actions
45 lines (42 loc) · 1.33 KB
/
tslint.json
File metadata and controls
45 lines (42 loc) · 1.33 KB
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
{
"extends": [
"rxjs-tslint-rules",
"./node_modules/reyesoft-ci/js/rules/tslint.json"
],
"rules": {
"prefer-for-of": false,
"invalid-void": false,
"member-ordering": [false,
{ "order": "fields-first" }
],
"variable-name": [
true,
"ban-keywords",
"allow-leading-underscore",
"check-format",
"allow-snake-case",
"allow-pascal-case"
],
"file-name-casing": [true, "kebab-case"],
"no-inputs-metadata-property": false,
"no-host-metadata-property": false,
"interface-name" : [false, "never"],
"no-console": [true,
"debug",
"time",
"timeEnd",
"trace"
],
"no-void-expression": [true, "ignore-arrow-function-shorthand"],
"linebreak-style": ["error", "windows"],
"rxjs-ban-observables": true,
"rxjs-ban-operators": true,
"rxjs-no-create": true,
"rxjs-no-unsafe-catch": true,
"rxjs-no-unsafe-first": true,
"rxjs-no-unsafe-switchmap": true,
"rxjs-no-unsafe-takeuntil": true,
"directive-selector": [true, "attribute", ["demo", "jam"], "camelCase"],
"component-selector": [true, "element", ["demo", "jam"], "kebab-case"]
}
}