tslint.json 381 B

12345678910111213
  1. {
  2. "rules": {
  3. "no-unnecessary-type-assertion": false
  4. },
  5. "meta": {
  6. "category": "typescript-specific",
  7. "description": "禁止无用的类型断言",
  8. "reason": "Requires Type Info 的规则,无法在编辑器中显示错误,不方便修复",
  9. "ts-only": true,
  10. "has-fixer": true,
  11. "requires-type-info": true
  12. }
  13. }