]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tslint.json
Add blacklist reason field
[github/Chocobozzz/PeerTube.git] / client / tslint.json
CommitLineData
44124980 1{
df98563e 2 "extends": "tslint-config-standard",
a563a494 3 "rulesDirectory": ["./node_modules/codelyzer"],
44124980 4 "rules": {
33f12c74 5 "no-inferrable-types": true,
44124980 6 "eofline": true,
44124980 7 "max-line-length": [true, 140],
df98563e 8 "no-floating-promises": false,
dfecb900 9 "no-unused-variable": false, // Memory issues
44124980
C
10 "member-ordering": [true,
11 "public-before-private",
12 "static-before-instance",
13 "variables-before-functions"
14 ],
44124980 15
4a7eeb62
C
16 "angular-whitespace": [true, "check-interpolation", "check-semicolon"],
17 "banana-in-box": true,
18 "templates-no-negated-async": true,
9bce7592
C
19 "directive-selector": [true, "attribute", "my", "camelCase"],
20 "component-selector": [true, "element", "my", "kebab-case"],
a563a494
C
21 "use-input-property-decorator": true,
22 "use-output-property-decorator": true,
23 "use-host-property-decorator": true,
4a7eeb62 24 "use-view-encapsulation": true,
a563a494
C
25 "no-attribute-parameter-decorator": true,
26 "no-input-rename": true,
27 "no-output-rename": true,
4a7eeb62 28 "no-output-on-prefix": true,
2de96f4d 29 "no-forward-ref": false,
a563a494 30 "use-life-cycle-interface": true,
4a7eeb62
C
31 "contextual-life-cycle": true,
32 "trackBy-function": false,
a563a494
C
33 "use-pipe-transform-interface": true,
34 "pipe-naming": [true, "camelCase", "my"],
35 "component-class-suffix": true,
ccf6ed16 36 "directive-class-suffix": true,
4a7eeb62 37 "pipe-impure": true
44124980
C
38 }
39}