]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tslint.json
Update client dependencies
[github/Chocobozzz/PeerTube.git] / client / tslint.json
CommitLineData
44124980 1{
c4710631 2 "extends": [ "tslint-angular", "tslint-config-standard" ],
44124980 3 "rules": {
33f12c74 4 "no-inferrable-types": true,
44124980 5 "eofline": true,
44124980 6 "max-line-length": [true, 140],
df98563e 7 "no-floating-promises": false,
dfecb900 8 "no-unused-variable": false, // Memory issues
c4710631 9 "await-promise": [true, "PromiseLike"],
dffd5d12
B
10 "member-ordering": [true, {
11 "order": [
12 "public-static-field",
13 "private-static-field",
14 "public-instance-field",
15 "private-instance-field",
16 "public-constructor",
17 "private-constructor",
18 "public-instance-method",
19 "protected-instance-method",
20 "private-instance-method"
21 ]}
44124980 22 ],
44124980 23
c4710631
C
24 "no-shadowed-variable": false,
25 "no-bitwise": false,
26 "max-classes-per-file": false,
27 "interface-over-type-literal": false
44124980
C
28 }
29}