forked from kukhariev/ngx-uploadx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtslint.json
38 lines (38 loc) · 1.21 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
{
"extends": ["tslint:recommended", "tslint-plugin-prettier", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["**/polyfills.ts"]
},
"rulesDirectory": ["codelyzer"],
"rules": {
"component-class-suffix": true,
"directive-class-suffix": true,
"file-name-casing": [true, "kebab-case"],
"import-blacklist": [true, "rxjs/Rx"],
"interface-name": false,
"member-access": false,
"no-empty": false,
"no-host-metadata-property": true,
"no-inferrable-types": [true, "ignore-params"],
"no-input-rename": true,
"no-inputs-metadata-property": true,
"no-non-null-assertion": true,
"no-output-on-prefix": true,
"no-output-rename": true,
"no-outputs-metadata-property": true,
"no-redundant-jsdoc": true,
"no-switch-case-fall-through": true,
"no-unnecessary-callback-wrapper": true,
"no-unused-expression": false,
"no-var-requires": false,
"object-literal-sort-keys": false,
"ordered-imports": true,
"prettier": true,
"trailing-comma": false,
"use-lifecycle-interface": true,
"use-pipe-transform-interface": true,
"variable-name": {
"options": ["ban-keywords", "check-format", "allow-leading-underscore"]
}
}
}