.eslintrc 284 B

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