.eslintrc.js 804 B

12345678910111213141516171819202122232425262728293031323334
  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. 'vue/html-self-closing': 'off',
  17. 'no-unused-vars': 'warn',
  18. 'prettier/prettier': [
  19. 'error',
  20. { singleQuote: true, arrowParens: 'avoid', jsxBracketSameLine: true }
  21. ]
  22. },
  23. overrides: [
  24. {
  25. files: [
  26. '**/__tests__/*.{j,t}s?(x)',
  27. '**/tests/unit/**/*.spec.{j,t}s?(x)'
  28. ],
  29. env: {
  30. mocha: true
  31. }
  32. }
  33. ]
  34. };