Files
jinshen-website/eslint.config.mjs
R2m1liA 359aaec8a9 style: 格式化项目代码
- 根据prettier配置格式化整个项目的代码
2025-09-17 15:50:29 +08:00

19 lines
285 B
JavaScript

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