-
Notifications
You must be signed in to change notification settings - Fork 8
/
tslint.json
33 lines (32 loc) · 1.08 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
{
"extends": ["tslint-config-valorsoft", "tslint-config-valorsoft/tslint-angular.json", "tslint-config-prettier"],
"rulesDirectory": "node_modules/codelyzer",
"rules": {
"component-class-suffix": [true, "Component", "Page"],
"directive-selector": [true, "attribute", "tezblock", "camelCase"],
"component-selector": [false, "element", "tezblock", "kebab-case"],
"pipe-naming": [true, "camelCase", "tezblock"],
"semicolon": [true, "never"],
"member-access": [true],
"import-blacklist": [false, "rxjs"],
"no-implicit-dependencies": false,
"prefer-template": [true, "allow-single-concat"],
"member-ordering": [
true,
{
"order": ["public-before-private", "static-before-instance", "variables-before-functions"],
"alphabetize": true
}
],
"i18n": false,
"no-inferrable-types": false,
"ordered-imports": {
"options": {
"grouped-imports": true,
"import-sources-order": "case-insensitive",
"named-imports-order": "case-insensitive",
"module-source-path": "full"
}
}
}
}