mirror of
https://github.com/spark-store-project/spark-store-abyss
synced 2025-12-16 20:31:38 +08:00
Co-authored-by: xudeyu444 <xudeyu444@users.noreply.github.com> Co-authored-by: 奕 <a18355849597@outlook.com> Co-authored-by: Sylvanysc <Sylvanysc@users.noreply.github.com>
12 lines
222 B
JavaScript
12 lines
222 B
JavaScript
// @ts-check
|
|
import withNuxt from "./.nuxt/eslint.config.mjs";
|
|
|
|
export default withNuxt(
|
|
// Your custom configs here
|
|
{
|
|
rules: {
|
|
"vue/html-self-closing": "off", // Disable self-closing tags rule
|
|
},
|
|
}
|
|
);
|