]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tslint.json
ApplicationFollow -> SeverFollow
[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
C
8 "no-floating-promises": false,
9 "no-unused-variable": false, // Bug, wait TypeScript 2.4
44124980
C
10 "member-ordering": [true,
11 "public-before-private",
12 "static-before-instance",
13 "variables-before-functions"
14 ],
44124980 15
9bce7592
C
16 "directive-selector": [true, "attribute", "my", "camelCase"],
17 "component-selector": [true, "element", "my", "kebab-case"],
a563a494
C
18 "use-input-property-decorator": true,
19 "use-output-property-decorator": true,
20 "use-host-property-decorator": true,
21 "no-attribute-parameter-decorator": true,
22 "no-input-rename": true,
23 "no-output-rename": true,
2de96f4d 24 "no-forward-ref": false,
a563a494
C
25 "use-life-cycle-interface": true,
26 "use-pipe-transform-interface": true,
27 "pipe-naming": [true, "camelCase", "my"],
28 "component-class-suffix": true,
ccf6ed16 29 "directive-class-suffix": true,
9bce7592 30 "templates-use-public": true,
5c98d3bf 31 "no-access-missing-member": false,
df98563e 32 "invoke-injectable": true
44124980
C
33 }
34}