tslint.json 339 B

1234567891011
  1. {
  2. "rules": {
  3. "no-for-in-array": false
  4. },
  5. "meta": {
  6. "category": "functionality",
  7. "description": "禁止对 `array` 使用 `for in` 循环",
  8. "reason": "没必要限制\nRequires Type Info 的规则,无法在编辑器中显示错误,不方便修复",
  9. "requires-type-info": true
  10. }
  11. }