forked from valor-software/ngx-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tslint.json
29 lines (29 loc) · 995 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
{
"extends": "tslint-config-valorsoft",
"rulesDirectory": "./node_modules/codelyzer",
"rules": {
"import-blacklist": [true, "rxjs/Rx", "lodash"],
"member-access": [true, "no-public"],
"no-void-expression": ["ignore-arrow-function-shorthand"],
"space-before-function-paren": [true, {"anonymous": "always", "named": "never", "asyncArrow": "always"}],
"use-host-property-decorator": false,
"no-parameter-properties": false,
"typedef": true,
"no-forward-ref": false,
"no-null-keyword": false,
"only-arrow-functions": false,
"directive-selector": false,
"component-selector": false,
"no-magic-numbers": false,
"no-any": false,
"prefer-object-spread": false,
"prefer-for-of": false,
"angular-whitespace": false,
"use-view-encapsulation": false,
"typeof-compare": false,
"templates-use-public": false,
"no-access-missing-member": false,
"invoke-injectable": false,
"template-to-ng-template": false
}
}