123456789101112131415161718192021 |
- /* eslint-env node */
- require('@rushstack/eslint-patch/modern-module-resolution')
- module.exports = {
- root: true,
- extends: [
- 'plugin:vue/vue3-essential',
- 'eslint:recommended',
- '@vue/eslint-config-typescript/recommended',
- '@vue/eslint-config-prettier'
- ],
- parserOptions: {
- ecmaVersion: 'latest'
- },
- rules: {
- 'no-undef': 'off',
- '@typescript-eslint/no-explicit-any': 'off',
- '@typescript-eslint/ban-types': 'off',
- 'vue/multi-word-component-names': 'off'
- }
- }
|