15 lines
260 B
JavaScript
15 lines
260 B
JavaScript
// @ts-check
|
|
import withNuxt from "./.nuxt/eslint.config.mjs";
|
|
|
|
export default withNuxt({
|
|
rules: {
|
|
"vue/no-irregular-whitespace": [
|
|
"error",
|
|
{
|
|
skipHTMLTextContents: true,
|
|
},
|
|
],
|
|
"no-irregular-whitespace": "off",
|
|
},
|
|
});
|