.eslintrc.js 390 B

1234567891011121314151617181920
  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. }
  20. }