tslint.json 303 B

1234567891011121314
  1. {
  2. "rules": {
  3. "no-this-assignment": [
  4. true,
  5. {
  6. "allow-destructuring": true
  7. }
  8. ]
  9. },
  10. "meta": {
  11. "category": "functionality",
  12. "description": "禁止将 `this` 赋值给其他变量,除非是解构赋值"
  13. }
  14. }