tslint.json 323 B

1234567891011
  1. {
  2. "rules": {
  3. "no-non-null-assertion": true
  4. },
  5. "meta": {
  6. "category": "typescript-specific",
  7. "description": "禁止使用 non-null 断言(感叹号)",
  8. "reason": "non-null 断言不安全,最好使用条件语句把 `null` 排除掉比较好",
  9. "ts-only": true
  10. }
  11. }