]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/tslint.json
Fetch things in bulk for the homepage
[github/Chocobozzz/PeerTube.git] / client / tslint.json
CommitLineData
44124980 1{
c4710631 2 "extends": [ "tslint-angular", "tslint-config-standard" ],
44124980 3 "rules": {
583eb04b
C
4 "deprecation": {
5 "severity": "warning"
6 },
33f12c74 7 "no-inferrable-types": true,
44124980 8 "eofline": true,
44124980 9 "max-line-length": [true, 140],
583eb04b 10 "no-floating-promises": false, // Memory issues
c4710631 11 "await-promise": [true, "PromiseLike"],
dffd5d12
B
12 "member-ordering": [true, {
13 "order": [
14 "public-static-field",
15 "private-static-field",
16 "public-instance-field",
17 "private-instance-field",
18 "public-constructor",
19 "private-constructor",
20 "public-instance-method",
21 "protected-instance-method",
22 "private-instance-method"
23 ]}
44124980 24 ],
16b55259
C
25 "variable-name": [
26 true,
27 "ban-keywords",
28 "check-format",
29 "allow-leading-underscore",
30 "allow-pascal-case",
31 "allow-trailing-underscore"
32 ],
44124980 33
c4710631
C
34 "no-shadowed-variable": false,
35 "no-bitwise": false,
36 "max-classes-per-file": false,
37 "interface-over-type-literal": false
44124980
C
38 }
39}