X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftslint.json;h=fcc866ee38ab7526e741c5cd96a37cc97451d435;hb=a1a216d9cb51db60cfc445b47de654f27e7d3b12;hp=6438519a69bcee7db8d876169a2dec2185ee17f4;hpb=5c98d3bf078852043cbdd582c01e3dc4f4b5b79f;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tslint.json b/client/tslint.json index 6438519a6..fcc866ee3 100644 --- a/client/tslint.json +++ b/client/tslint.json @@ -6,29 +6,42 @@ "eofline": true, "max-line-length": [true, 140], "no-floating-promises": false, - "no-unused-variable": false, // Bug, wait TypeScript 2.4 - "member-ordering": [true, - "public-before-private", - "static-before-instance", - "variables-before-functions" + "no-unused-variable": false, // Memory issues + "member-ordering": [true, { + "order": [ + "public-static-field", + "private-static-field", + "public-instance-field", + "private-instance-field", + "public-constructor", + "private-constructor", + "public-instance-method", + "protected-instance-method", + "private-instance-method" + ]} ], + "angular-whitespace": [true, "check-interpolation", "check-semicolon"], + "banana-in-box": true, + "templates-no-negated-async": true, "directive-selector": [true, "attribute", "my", "camelCase"], "component-selector": [true, "element", "my", "kebab-case"], "use-input-property-decorator": true, "use-output-property-decorator": true, "use-host-property-decorator": true, + "use-view-encapsulation": true, "no-attribute-parameter-decorator": true, "no-input-rename": true, "no-output-rename": true, - "no-forward-ref": true, + "no-output-on-prefix": true, + "no-forward-ref": false, "use-life-cycle-interface": true, + "contextual-life-cycle": true, + "trackBy-function": false, "use-pipe-transform-interface": true, - "pipe-naming": [true, "camelCase", "my"], + "pipe-prefix": [true, "my"], "component-class-suffix": true, "directive-class-suffix": true, - "templates-use-public": true, - "no-access-missing-member": false, - "invoke-injectable": true + "pipe-impure": true } }