| 1234567891011121314151617181920212223242526 |
- module.exports = {
- root: true,
- env: {
- node: true
- },
- extends: [
- 'plugin:vue/vue3-essential',
- '@vue/standard',
- '@vue/typescript/recommended'
- ],
- parserOptions: {
- ecmaVersion: 2020
- },
- rules: {
- 'vue/multi-word-component-names': 0,
- '@typescript-eslint/no-empty-function': 'off',
- 'no-undef': 'off',
- '@typescript-eslint/no-var-requires': 0,
- 'arrow-body-style': ['off'],
- 'no-return-assign': 'off',
- 'func-call-spacing': 'off',
- '@typescript-eslint/ban-types': 'off',
- 'vue/on-parsing-error': 'off',
- 'vue/no-unused-vars': 'off'
- }
- }
|