All checks were successful
deploy to server / build-and-deploy (push) Successful in 3m11s
- 添加eslint,不允许使用console输出
20 lines
313 B
JavaScript
20 lines
313 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',
|
|
},
|
|
},
|
|
],
|
|
'no-console': 'warn',
|
|
},
|
|
}
|
|
);
|