2025-08-08 13:11:33 +09:00
|
|
|
// @ts-check
|
|
|
|
import withNuxt from "./.nuxt/eslint.config.mjs";
|
|
|
|
|
|
|
|
export default withNuxt(
|
|
|
|
// Your custom configs here
|
|
|
|
{
|
|
|
|
rules: {
|
|
|
|
"vue/html-self-closing": "off",
|
|
|
|
"vue/html-closing-bracket-newline": "off",
|
|
|
|
"@typescript-eslint/no-explicit-any": "off",
|
2025-08-14 11:00:48 +09:00
|
|
|
'import/no-duplicates': 'off'
|
2025-08-08 13:11:33 +09:00
|
|
|
},
|
|
|
|
}
|
|
|
|
);
|