.eslintrc 264 B

12345678910111213141516
  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"],
  13. "rules": {
  14. "jsx-quotes": ["error", "prefer-double"]
  15. }
  16. }