.eslintrc 180 B

12345678910111213
  1. {
  2. "extends": "standard",
  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. }