.eslintrc 299 B

12345678910111213141516171819202122232425
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "id-length": 0,
  6. "new-cap": [2, {
  7. "capIsNewExceptions": [
  8. "RequireObjectCoercible",
  9. "ToString",
  10. ],
  11. }],
  12. "no-invalid-this": 1,
  13. },
  14. "overrides": [
  15. {
  16. "files": "test/**",
  17. "rules": {
  18. "id-length": 0,
  19. },
  20. },
  21. ],
  22. }