-
Notifications
You must be signed in to change notification settings - Fork 6
/
tslint.json
47 lines (46 loc) · 1.26 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
39
40
41
42
43
44
45
46
47
{
"extends": [
"tslint-config-valorsoft",
"tslint-config-valorsoft/tslint-angular.json",
"tslint-plugin-prettier",
"tslint-config-prettier"
],
"rulesDirectory": "node_modules/codelyzer",
"rules": {
"prettier": true,
"strict-comparisons": true,
"component-class-suffix": [true, "Component", "Page"],
"directive-selector": [true, "attribute", "beacon", "camelCase"],
"component-selector": [true, "element", "beacon", "kebab-case"],
"semicolon": [true, "never"],
"member-access": [true],
"member-ordering": [
true,
{
"order": ["public-before-private", "static-before-instance", "variables-before-functions"],
"alphabetize": true
}
],
"typedef": [
true,
"call-signature",
"arrow-call-signature",
"parameter",
"arrow-parameter",
"property-declaration",
"variable-declaration",
"member-variable-declaration",
"object-destructuring",
"array-destructuring"
],
"no-inferrable-types": false,
"ordered-imports": {
"options": {
"grouped-imports": true,
"import-sources-order": "case-insensitive",
"named-imports-order": "case-insensitive",
"module-source-path": "full"
}
}
}
}