]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tslint.json
Fix CSP for embeds
[github/Chocobozzz/PeerTube.git] / tslint.json
CommitLineData
65fcc311 1{
df98563e
C
2 "extends": "tslint-config-standard",
3 "rules": {
d412e80e 4 "await-promise": [true, "Bluebird"],
df98563e
C
5 "no-inferrable-types": true,
6 "eofline": true,
dffd5d12 7 "indent": [true, "spaces"],
b4055e1c
C
8 "ter-indent": [
9 true,
10 2,
11 {
12 "SwitchCase": 1
13 }
14 ],
df98563e 15 "max-line-length": [true, 140],
dfecb900 16 "no-unused-variable": false, // Memory issues
df98563e
C
17 "no-floating-promises": false
18 }
65fcc311 19}