diff options
Diffstat (limited to 'client/tslint.json')
-rw-r--r-- | client/tslint.json | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/client/tslint.json b/client/tslint.json index 0cffea582..5b2c1c505 100644 --- a/client/tslint.json +++ b/client/tslint.json | |||
@@ -14,14 +14,11 @@ | |||
14 | ], | 14 | ], |
15 | "no-arg": true, | 15 | "no-arg": true, |
16 | "no-construct": true, | 16 | "no-construct": true, |
17 | "no-duplicate-key": true, | ||
18 | "no-duplicate-variable": true, | 17 | "no-duplicate-variable": true, |
19 | "no-empty": true, | 18 | "no-empty": true, |
20 | "no-eval": true, | 19 | "no-eval": true, |
21 | "no-trailing-whitespace": true, | 20 | "no-trailing-whitespace": true, |
22 | "no-unused-expression": true, | 21 | "no-unused-expression": true, |
23 | "no-unused-variable": true, | ||
24 | "no-unreachable": true, | ||
25 | "no-use-before-declare": true, | 22 | "no-use-before-declare": true, |
26 | "one-line": [true, | 23 | "one-line": [true, |
27 | "check-open-brace", | 24 | "check-open-brace", |
@@ -35,24 +32,24 @@ | |||
35 | "triple-equals": true, | 32 | "triple-equals": true, |
36 | "variable-name": false, | 33 | "variable-name": false, |
37 | 34 | ||
38 | "directive-selector-name": [true, "camelCase"], | 35 | "directive-selector": [true, "attribute", "my", "camelCase"], |
39 | "component-selector-name": [true, "kebab-case"], | 36 | "component-selector": [true, "element", "my", "kebab-case"], |
40 | "directive-selector-type": [true, "attribute"], | ||
41 | "component-selector-type": [true, "element"], | ||
42 | "directive-selector-prefix": [true, "my"], | ||
43 | "component-selector-prefix": [true, "my"], | ||
44 | "use-input-property-decorator": true, | 37 | "use-input-property-decorator": true, |
45 | "use-output-property-decorator": true, | 38 | "use-output-property-decorator": true, |
46 | "use-host-property-decorator": true, | 39 | "use-host-property-decorator": true, |
47 | "no-attribute-parameter-decorator": true, | 40 | "no-attribute-parameter-decorator": true, |
48 | "no-input-rename": true, | 41 | "no-input-rename": true, |
49 | "no-output-rename": true, | 42 | "no-output-rename": true, |
50 | "no-forward-ref" :true, | 43 | "no-forward-ref": true, |
51 | "use-life-cycle-interface": true, | 44 | "use-life-cycle-interface": true, |
52 | "use-pipe-transform-interface": true, | 45 | "use-pipe-transform-interface": true, |
53 | "pipe-naming": [true, "camelCase", "my"], | 46 | "pipe-naming": [true, "camelCase", "my"], |
54 | "component-class-suffix": true, | 47 | "component-class-suffix": true, |
55 | "directive-class-suffix": true, | 48 | "directive-class-suffix": true, |
49 | "import-destructuring-spacing": true, | ||
50 | "templates-use-public": true, | ||
51 | "no-access-missing-member": true, | ||
52 | "invoke-injectable": true, | ||
56 | 53 | ||
57 | "typedef-whitespace": [ true, | 54 | "typedef-whitespace": [ true, |
58 | { | 55 | { |