.eslintrc.js 537 B

12345678910111213141516171819202122232425262728
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. 'extends': [
  7. 'plugin:vue/essential',
  8. 'eslint:recommended'
  9. ],
  10. parserOptions: {
  11. parser: '@babel/eslint-parser'
  12. },
  13. rules: {
  14. 'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
  15. 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
  16. },
  17. overrides: [
  18. {
  19. files: [
  20. '**/__tests__/*.{j,t}s?(x)',
  21. '**/tests/unit/**/*.spec.{j,t}s?(x)'
  22. ],
  23. env: {
  24. jest: true
  25. }
  26. }
  27. ]
  28. }