.eslintrc.js 738 B

1234567891011121314151617181920212223242526272829
  1. module.exports = {
  2. root: true,
  3. env: {
  4. node: true
  5. },
  6. extends: [
  7. 'plugin:vue/vue3-essential',
  8. '@vue/standard',
  9. '@vue/typescript/recommended'
  10. ],
  11. parserOptions: {
  12. ecmaVersion: 2020
  13. },
  14. rules: {
  15. 'vue/multi-word-component-names': 0,
  16. '@typescript-eslint/no-empty-function': 'off',
  17. 'no-undef': 'off',
  18. '@typescript-eslint/no-var-requires': 0,
  19. 'arrow-body-style': ['off'],
  20. 'no-return-assign': 'off',
  21. 'func-call-spacing': 'off',
  22. '@typescript-eslint/ban-types': 'off',
  23. 'vue/on-parsing-error': 'off',
  24. 'vue/no-unused-vars': 'off',
  25. 'no-useless-escape': 'off',
  26. 'no-use-before-define': 'off',
  27. 'vue/no-setup-props-destructure': 'off'
  28. }
  29. }