tslint.json 245 B

12345678910
  1. {
  2. "rules": {
  3. "prefer-function-over-method": false
  4. },
  5. "meta": {
  6. "category": "style",
  7. "description": "类中没有使用 `this` 的方法应该提取成类外的函数",
  8. "reason": "太严格了"
  9. }
  10. }