X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftslint.json;h=1b28e679b8d66a388509a893cde3bd3dbd8b793e;hb=36619ac8f50daf51a46658f0b530495ba3a0b6bf;hp=6a40b5b1180619d809cb11d821458d8853d8409b;hpb=44124980c55d5a5ec7dfb8e71bf14d10f0fe975d;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tslint.json b/client/tslint.json index 6a40b5b11..1b28e679b 100644 --- a/client/tslint.json +++ b/client/tslint.json @@ -1,46 +1,37 @@ { - "rulesDirectory": ["./node_modules/codelyzer/dist/src"], + "extends": [ "tslint-angular", "tslint-config-standard" ], "rules": { - "class-name": true, - "curly": false, + "no-inferrable-types": true, "eofline": true, - "indent": ["spaces"], "max-line-length": [true, 140], - "member-ordering": [true, - "public-before-private", - "static-before-instance", - "variables-before-functions" + "no-floating-promises": false, + "no-unused-variable": false, // Memory issues + "await-promise": [true, "PromiseLike"], + "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" + ]} ], - "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" + "variable-name": [ + true, + "ban-keywords", + "check-format", + "allow-leading-underscore", + "allow-pascal-case", + "allow-trailing-underscore" ], - "quotemark": [true, "single"], - "semicolon": true, - "trailing-comma": true, - "triple-equals": true, - "variable-name": false, - "component-selector-name": [true, "kebab-case"], - "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 + "no-shadowed-variable": false, + "no-bitwise": false, + "max-classes-per-file": false, + "interface-over-type-literal": false } }