Fix docker build on gitlab cci
[oweals/peertube.git] / tslint.json
1 {
2   "extends": "tslint-config-standard",
3   "rules": {
4     "await-promise": [true, "Bluebird"],
5     "no-inferrable-types": true,
6     "eofline": true,
7     "indent": [true, "spaces"],
8     "ter-indent": [
9       true,
10       2,
11       {
12         "SwitchCase": 1
13       }
14     ],
15     "max-line-length": [true, 140],
16     "no-unused-variable": false, // Memory issues
17     "no-floating-promises": false
18   }
19 }