-
Notifications
You must be signed in to change notification settings - Fork 52
/
tslint.json
32 lines (30 loc) · 946 Bytes
/
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
{
"extends": [
"rxjs-tslint-rules",
"./node_modules/reyesoft-ci/js/rules/tslint.json"
],
"rules": {
"prefer-for-of": false,
"member-ordering": [false,
{ "order": "fields-first" }
],
"no-console": [true,
"debug",
"time",
"timeEnd",
"trace"
],
"no-void-expression": [true, "ignore-arrow-function-shorthand"],
"promise-function-async": false,
"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,
/* "rxjs-throw-error": true, */
"directive-selector": [true, "attribute", ["demo"], "camelCase"],
"component-selector": [true, "element", ["demo"], "kebab-case"]
}
}