| 12345678910111213141516171819 |
- module.exports = {
- root: true,
- env: {
- node: true
- },
- extends: [
- "plugin:vue/vue3-essential"
- ],
- parserOptions: {
- parser: "@babel/eslint-parser"
- },
- rules: {
- indent: 0,
- "no-tabs": 0,
- "no-mixed-spaces-and-tabs": 0,
- "vue/no-unused-components": 0,
- "vue/multi-word-component-names": 0
- }
- }
|