tslint.json 297 B

123456789101112
  1. {
  2. "rules": {
  3. "array-type": false
  4. },
  5. "meta": {
  6. "category": "style",
  7. "description": "限制必须使用 `T[]` 或 `Array<T>` 之中的一种来定义数组的类型",
  8. "reason": "没必要限制",
  9. "ts-only": true,
  10. "has-fixer": true
  11. }
  12. }