.eslintrc.js 768 B

123456789101112131415161718192021222324252627282930313233
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: ['plugin:vue/essential', 'eslint:recommended', '@vue/prettier'],
  7. parserOptions: {
  8. parser: 'babel-eslint'
  9. },
  10. rules: {
  11. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  12. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  13. // allow async-await
  14. 'generator-star-spacing': 'off',
  15. 'no-new': 0,
  16. 'no-unused-vars': 'warn',
  17. 'prettier/prettier': [
  18. 'error',
  19. { singleQuote: true, arrowParens: 'avoid', jsxBracketSameLine: true }
  20. ]
  21. },
  22. overrides: [
  23. {
  24. files: [
  25. '**/__tests__/*.{j,t}s?(x)',
  26. '**/tests/unit/**/*.spec.{j,t}s?(x)'
  27. ],
  28. env: {
  29. mocha: true
  30. }
  31. }
  32. ]
  33. };