X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftslint.json;h=db852d9f8d37fbf247ded51ca4b5c0436100b4ea;hb=cf7a61b5a2b68fd966c4a355e37e84b048ed296b;hp=50b90be65c5a8b9138780a3197b76a1b6a2cbe31;hpb=383bfc8356d444cbed1dab7e5c1b3bb16becfdfd;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tslint.json b/client/tslint.json index 50b90be65..db852d9f8 100644 --- a/client/tslint.json +++ b/client/tslint.json @@ -1,70 +1,39 @@ { + "extends": "tslint-config-standard", "rulesDirectory": ["./node_modules/codelyzer"], "rules": { - "class-name": true, "no-inferrable-types": true, - "curly": false, "eofline": true, - "indent": ["spaces"], "max-line-length": [true, 140], + "no-floating-promises": false, + "no-unused-variable": false, // Memory issues "member-ordering": [true, "public-before-private", "static-before-instance", "variables-before-functions" ], - "no-arg": true, - "no-construct": true, - "no-duplicate-variable": true, - "no-empty": true, - "no-eval": true, - "no-trailing-whitespace": true, - "no-unused-expression": true, - "no-use-before-declare": true, - "one-line": [true, - "check-open-brace", - "check-catch", - "check-else", - "check-whitespace" - ], - "quotemark": [true, "single"], - "semicolon": true, - "trailing-comma": true, - "triple-equals": true, - "variable-name": false, + "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"], "component-class-suffix": true, "directive-class-suffix": true, - "templates-use-public": true, - "no-access-missing-member": true, - "invoke-injectable": 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" - ] + "pipe-impure": true } }