.eslintrc 560 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "env": {
  3. "browser": true,
  4. "jquery": true
  5. },
  6. "rules": {
  7. "curly": 1,
  8. "dot-location": [2, "property"],
  9. "eqeqeq": 1,
  10. "linebreak-style": [2, "unix"],
  11. "no-else-return": 1,
  12. "no-eval": 2,
  13. "no-octal": 2,
  14. "no-with": 2,
  15. "radix": 2,
  16. "brace-style": 0,
  17. "camelcase": 0,
  18. "indent": 0,
  19. "no-array-constructor": 2,
  20. "quotes": [2, "single", {
  21. "allowTemplateLiterals": true,
  22. "avoidEscape": true
  23. }],
  24. "spaced-comment": 0,
  25. "arrow-spacing": 2,
  26. "no-var": 0,
  27. "no-unused-vars": 1
  28. }
  29. }