tslint.json 255 B

12345678910
  1. {
  2. "rules": {
  3. "no-unnecessary-callback-wrapper": false
  4. },
  5. "meta": {
  6. "category": "style",
  7. "description": "禁止没必要的函数调用,如 `x => f(x)` 应该简写为 `f`",
  8. "reason": "没必要限制"
  9. }
  10. }