| | |
| | | 'plugin:prettier/recommended', |
| | | ], |
| | | rules: { |
| | | 'no-undef': 'off', |
| | | 'no-unused-vars': 'off', |
| | | 'no-case-declarations': 'off', |
| | | 'no-use-before-define': 'off', |
| | |
| | | 'import/newline-after-import': 'error', |
| | | 'import/no-duplicates': 'error', |
| | | |
| | | // '@typescript-eslint/no-unused-vars': [ |
| | | // 'error', |
| | | // { |
| | | // argsIgnorePattern: '^_', |
| | | // varsIgnorePattern: '^_', |
| | | // }, |
| | | // ], |
| | | '@typescript-eslint/no-unused-vars': 'off', |
| | | '@typescript-eslint/no-unused-vars': [ |
| | | 'error', |
| | | { |
| | | argsIgnorePattern: '^_', |
| | | varsIgnorePattern: '^_', |
| | | }, |
| | | ], |
| | | '@typescript-eslint/ban-ts-ignore': 'off', |
| | | '@typescript-eslint/ban-ts-comment': 'off', |
| | | '@typescript-eslint/ban-types': 'off', |
| | |
| | | 'vue/attribute-hyphenation': 'off', |
| | | 'vue/require-default-prop': 'off', |
| | | 'vue/require-explicit-emits': 'off', |
| | | 'vue/v-on-event-hyphenation': 'off', |
| | | 'vue/html-self-closing': [ |
| | | 'error', |
| | | { |