tslint.json 324 B

12345678910
  1. {
  2. "rules": {
  3. "no-magic-numbers": [true, -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 100, 1000, 10000]
  4. },
  5. "meta": {
  6. "category": "typescript-specific",
  7. "description": "禁止使用魔法数字,仅允许使用一部分白名单中的数字",
  8. "reason": "魔法数字无法理解"
  9. }
  10. }