PeerTube/tslint.json

20 lines
395 B
JSON
Raw Normal View History

2017-05-15 22:22:03 +02:00
{
"extends": "tslint-config-standard",
"rules": {
2017-10-25 16:52:01 +02:00
"await-promise": [true, "Bluebird"],
"no-inferrable-types": true,
"eofline": true,
"indent": [true, "spaces"],
2019-07-18 14:28:37 +02:00
"ter-indent": [
true,
2,
{
"SwitchCase": 1
}
],
"max-line-length": [true, 140],
2018-03-08 17:31:11 +01:00
"no-unused-variable": false, // Memory issues
"no-floating-promises": false
}
2017-05-15 22:22:03 +02:00
}