.eslintrc.js 652 B

1234567891011121314151617181920212223242526272829
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: [
  7. 'plugin:vue/essential',
  8. '@vue/standard'
  9. ],
  10. parserOptions: {
  11. parser: 'babel-eslint'
  12. },
  13. rules: {
  14. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  15. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  16. 'space-before-function-paren': 0,
  17. 'key-spacing':0,
  18. 'quote-props':0,
  19. 'no-trailing-spaces':0,
  20. 'object-curly-newline':0,
  21. 'object-property-newline':0,
  22. 'indent':0,
  23. 'object-curly-newline':0,
  24. 'quotes':0,
  25. 'no-unused-vars':0,
  26. 'arrow-spacing':0,
  27. 'no-useless-return':0,
  28. }
  29. }