tslint.json 523 B

1234567891011121314151617181920212223
  1. {
  2. "rules": {
  3. "whitespace": [
  4. true,
  5. "check-branch",
  6. "check-decl",
  7. "check-operator",
  8. "check-module",
  9. "check-separator",
  10. "check-rest-spread",
  11. "check-type",
  12. "check-typecast",
  13. "check-type-operator",
  14. "check-preblock"
  15. ]
  16. },
  17. "meta": {
  18. "category": "style",
  19. "description": "限制空格的位置",
  20. "has-fixer": true,
  21. "prettier": true
  22. }
  23. }