tslint.json 242 B

1234567891011
  1. {
  2. "rules": {
  3. "switch-final-break": false
  4. },
  5. "meta": {
  6. "category": "style",
  7. "description": "`switch` 的最后一项禁止有 `break`",
  8. "reason": "没必要限制",
  9. "has-fixer": true
  10. }
  11. }