.eslintrc.yml 641 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ---
  2. root: true
  3. extends:
  4. - eslint:recommended
  5. - plugin:vue/essential
  6. - standard
  7. env:
  8. browser: true
  9. parserOptions:
  10. parser: babel-eslint
  11. plugins:
  12. - vue
  13. rules:
  14. no-new: 0
  15. generator-star-spacing: 0
  16. no-debugger: 2
  17. comma-dangle: 0
  18. no-unused-vars: 1
  19. no-console: 0
  20. eqeqeq: 2
  21. no-else-return: 1
  22. no-empty-function: 1
  23. no-unexpected-multiline: 1
  24. dot-location: 1
  25. guard-for-in: 0
  26. no-invalid-this: 0
  27. space-before-function-paren: 0
  28. indent: 0
  29. no-eval: 2
  30. default-case: 2
  31. no-bitwise: 2
  32. semi: 0
  33. radix: 2
  34. max-len: [
  35. 1,
  36. 140
  37. ]