.eslintrc.js 484 B

12345678910111213141516171819202122
  1. module.exports = {
  2. env: {
  3. browser: true,
  4. commonjs: true,
  5. es2021: true,
  6. node: true
  7. },
  8. extends: ['standard', 'plugin:vue/vue3-essential'],
  9. parserOptions: {
  10. ecmaVersion: 12,
  11. parser: '@typescript-eslint/parser'
  12. },
  13. plugins: ['vue', '@typescript-eslint'],
  14. rules: {
  15. 'comma-dangle': 'off',
  16. 'import/no-absolute-path': 'off',
  17. 'no-unused-vars': 'off',
  18. camelcase: 'off',
  19. 'no-redeclare': 'off',
  20. 'vue/no-unused-components': 'off'
  21. }
  22. }