X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftslint.json;h=0cffea582523bb924de7807a91a99fe732f27d63;hb=0fdadee769ad7a12de59574c5b9062186edb1b29;hp=6a40b5b1180619d809cb11d821458d8853d8409b;hpb=44124980c55d5a5ec7dfb8e71bf14d10f0fe975d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tslint.json b/client/tslint.json index 6a40b5b11..0cffea582 100644 --- a/client/tslint.json +++ b/client/tslint.json @@ -1,7 +1,8 @@ { - "rulesDirectory": ["./node_modules/codelyzer/dist/src"], + "rulesDirectory": ["./node_modules/codelyzer"], "rules": { "class-name": true, + "no-inferrable-types": true, "curly": false, "eofline": true, "indent": ["spaces"], @@ -34,13 +35,40 @@ "triple-equals": true, "variable-name": false, + "directive-selector-name": [true, "camelCase"], "component-selector-name": [true, "kebab-case"], + "directive-selector-type": [true, "attribute"], "component-selector-type": [true, "element"], - "host-parameter-decorator": true, - "input-parameter-decorator": true, - "output-parameter-decorator": true, - "attribute-parameter-decorator": true, - "input-property-directive": true, - "output-property-directive": true + "directive-selector-prefix": [true, "my"], + "component-selector-prefix": [true, "my"], + "use-input-property-decorator": true, + "use-output-property-decorator": true, + "use-host-property-decorator": true, + "no-attribute-parameter-decorator": true, + "no-input-rename": true, + "no-output-rename": true, + "no-forward-ref" :true, + "use-life-cycle-interface": true, + "use-pipe-transform-interface": true, + "pipe-naming": [true, "camelCase", "my"], + "component-class-suffix": true, + "directive-class-suffix": true, + + "typedef-whitespace": [ true, + { + "call-signature": "nospace", + "index-signature": "nospace", + "parameter": "nospace", + "property-declaration": "nospace", + "variable-declaration": "nospace" + } + ], + "whitespace": [ true, + "check-branch", + "check-decl", + "check-operator", + "check-separator", + "check-type" + ] } }