style: 格式化项目代码

- 根据prettier配置格式化整个项目的代码
This commit is contained in:
2025-09-17 15:50:29 +08:00
parent bb89721f1c
commit 359aaec8a9
43 changed files with 1900 additions and 1878 deletions

View File

@ -1,15 +1,18 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'
import withNuxt from './.nuxt/eslint.config.mjs';
export default withNuxt(
// Your custom configs here
{
rules: {
"vue/html-self-closing": ["warn", {
"html": {
"void": "any",
}
}]
}
'vue/html-self-closing': [
'warn',
{
html: {
void: 'any',
},
},
],
},
}
)
);