9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
import withNuxt from "./.nuxt/eslint.config.mjs";
|
|
|
|
export default withNuxt({
|
|
rules: {
|
|
"vue/html-self-closing": "off",
|
|
"vue/multi-word-component-names": "off",
|
|
},
|
|
});
|