tslint.json 376 B

123456789101112
  1. {
  2. "rules": {
  3. "no-floating-promises": false
  4. },
  5. "meta": {
  6. "category": "functionality",
  7. "description": "函数返回值为 `Promise` 时,必须被处理",
  8. "reason": "太严格了\nRequires Type Info 的规则,无法在编辑器中显示错误,不方便修复",
  9. "ts-only": true,
  10. "requires-type-info": true
  11. }
  12. }