.eslintrc 324 B

123456789101112131415
  1. {
  2. "extends": "standard",
  3. "env": {
  4. "browser": true,
  5. "node": false
  6. },
  7. "globals": {
  8. "window": true,
  9. "hexo": true
  10. },
  11. "rules": {
  12. "key-spacing": [2, { "align": "colon" }],
  13. "no-multi-spaces": [2, { "exceptions": { "Property": true, "VariableDeclarator": true, "ImportDeclaration": true}}]
  14. }
  15. }