.eslintrc 425 B

12345678910111213141516171819202122
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "complexity": 0,
  6. "id-length": [2, { "min": 1, "max": 26 }],
  7. "max-statements": [2, 14],
  8. "new-cap": [2, { capIsNewExceptions: ["GetIntrinsic", "ToObject", "ToInteger", "ToLength", "SameValueZero", "RequireObjectCoercible"] }],
  9. },
  10. "overrides": [
  11. {
  12. "files": "test/**",
  13. "rules": {
  14. "max-lines-per-function": 0,
  15. "no-invalid-this": 1,
  16. },
  17. },
  18. ],
  19. }