tslint.json 386 B

123456789101112
  1. {
  2. "rules": {
  3. "match-default-export-name": false
  4. },
  5. "meta": {
  6. "category": "style",
  7. "description": "`import` 的名称必须和 `export default` 的名称一致",
  8. "reason": "没必要限制\nRequires Type Info 的规则,无法在编辑器中显示错误,不方便修复",
  9. "ts-only": true,
  10. "requires-type-info": true
  11. }
  12. }