.eslintrc 256 B

1234567891011121314151617181920
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "id-length": "off",
  6. },
  7. "overrides": [
  8. {
  9. "files": ["test/**/*.js"],
  10. "rules": {
  11. "id-length": "off",
  12. "multiline-comment-style": "off",
  13. "no-empty-function": "off",
  14. },
  15. },
  16. ],
  17. }