init source

This commit is contained in:
leejisun9
2025-08-08 13:11:33 +09:00
parent 02660627d2
commit 61d947a644
57 changed files with 1852863 additions and 0 deletions

13
eslint.config.mjs Normal file
View File

@@ -0,0 +1,13 @@
// @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",
},
}
);