X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftslint.json;h=068fe596e2b7640d03b180d5cef48bd26959c7fa;hb=ff249f499ccca2e37757f338384e7ba44c906a69;hp=0cffea582523bb924de7807a91a99fe732f27d63;hpb=33f12c744149b271281226a1759eb744a7417412;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tslint.json b/client/tslint.json index 0cffea582..068fe596e 100644 --- a/client/tslint.json +++ b/client/tslint.json @@ -1,74 +1,34 @@ { + "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, // Bug, wait TypeScript 2.4 "member-ordering": [true, "public-before-private", "static-before-instance", "variables-before-functions" ], - "no-arg": true, - "no-construct": true, - "no-duplicate-key": true, - "no-duplicate-variable": true, - "no-empty": true, - "no-eval": true, - "no-trailing-whitespace": true, - "no-unused-expression": true, - "no-unused-variable": true, - "no-unreachable": 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, - "directive-selector-name": [true, "camelCase"], - "component-selector-name": [true, "kebab-case"], - "directive-selector-type": [true, "attribute"], - "component-selector-type": [true, "element"], - "directive-selector-prefix": [true, "my"], - "component-selector-prefix": [true, "my"], + "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, "no-attribute-parameter-decorator": true, "no-input-rename": true, "no-output-rename": true, - "no-forward-ref" :true, + "no-forward-ref": false, "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" - ] + "templates-use-public": true, + "no-access-missing-member": false, + "invoke-injectable": true } }