tslint.json 818 B

12345678910111213141516171819202122232425262728
  1. {
  2. "rules": {
  3. "no-this-assignment": true,
  4. "no-eval": true,
  5. "align": true,
  6. "arrow-parens": true,
  7. "no-trailing-whitespace": true,
  8. "new-parens": true,
  9. "no-consecutive-blank-lines": true,
  10. "no-irregular-whitespace": true,
  11. "semicolon": [true, "always"],
  12. "space-before-function-paren": [true, "never"],
  13. "space-within-parens": true,
  14. "curly": true,
  15. "whitespace": [true,
  16. "check-branch",
  17. "check-decl",
  18. "check-operator",
  19. "check-module",
  20. "check-separator",
  21. "check-rest-spread",
  22. "check-type",
  23. "check-type-operator",
  24. "check-preblock"
  25. ],
  26. "indent": [true, "spaces", 4]
  27. }
  28. }