tslint.json 351 B

12345678910
  1. {
  2. "rules": {
  3. "only-arrow-functions": [true, "allow-declarations", "allow-named-functions"]
  4. },
  5. "meta": {
  6. "category": "typescript-specific",
  7. "description": "必须使用箭头函数,除非是单独的函数声明或是命名函数",
  8. "reason": "统一使用箭头函数,避免 `this` 指向问题"
  9. }
  10. }