.eslintrc.json 366 B

1234567891011121314151617181920
  1. {
  2. "extends": ["standard", "standard-preact"],
  3. "env": {
  4. "browser": true,
  5. "node": true,
  6. "jest": true
  7. },
  8. "globals": {
  9. "window": true,
  10. "hexo": true
  11. },
  12. "plugins": ["jest", "compat"],
  13. "rules": {
  14. "jsx-quotes": ["error", "prefer-double"],
  15. "compat/compat": ["error"]
  16. },
  17. "settings": {
  18. "polyfills": ["fetch", "promises"]
  19. }
  20. }