tslint.json 336 B

12345678910111213
  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": [true, 2],
  9. "max-line-length": [true, 140],
  10. "no-unused-variable": false, // Memory issues
  11. "no-floating-promises": false
  12. }
  13. }