.eslintrc 807 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "rules": {
  3. "camelcase": 2,
  4. "quotes": [2, "single", "avoid-escape"],
  5. "no-mixed-spaces-and-tabs": [2, "smart-tabs"],
  6. "space-before-function-paren": 2,
  7. "space-in-parens": 2,
  8. "object-curly-spacing": 2,
  9. "array-bracket-spacing": 2,
  10. "computed-property-spacing": 2,
  11. "space-before-blocks": 2,
  12. "keyword-spacing": 2,
  13. "no-lonely-if": 2,
  14. "comma-style": 2,
  15. "no-underscore-dangle": 0,
  16. "no-constant-condition": 0,
  17. "no-multi-spaces": 0,
  18. "strict": 0,
  19. "key-spacing": 0,
  20. "no-shadow": 0,
  21. "no-unused-vars": 2,
  22. "eqeqeq": 2
  23. },
  24. "globals": {
  25. "L": true,
  26. "module": false,
  27. "define": false,
  28. "require": true
  29. },
  30. "plugins": [
  31. "html"
  32. ],
  33. "settings": {
  34. "html/report-bad-indent": 2
  35. },
  36. "env": {
  37. "browser": true
  38. }
  39. }