.eslintrc 383 B

123456789101112131415161718192021222324252627
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "id-length": [2, { "min": 1, "max": 30 }],
  6. "new-cap": [2, {
  7. "capIsNewExceptions": [
  8. "CreateDataProperty",
  9. "IsCallable",
  10. "RequireObjectCoercible",
  11. "ToObject",
  12. ]
  13. }],
  14. },
  15. "overrides": [
  16. {
  17. "files": "test/**",
  18. "rules": {
  19. "max-lines-per-function": 0,
  20. "no-invalid-this": 1
  21. },
  22. },
  23. ],
  24. }