admin-vben/eslint.config.js

16 lines
403 B
JavaScript
Raw Normal View History

2023-10-18 07:22:29 +00:00
const antfu = require('@antfu/eslint-config').default
const unocss = require('@unocss/eslint-plugin')
module.exports = antfu(
2023-10-18 07:38:12 +00:00
{
rules: {
'no-console': 'off',
2023-10-18 10:39:14 +00:00
'node/prefer-global/process': 'off',
2023-10-18 07:38:12 +00:00
'vue/custom-event-name-casing': 'off',
2023-10-24 06:14:17 +00:00
'vue/component-name-in-template-casing': 'off',
2023-10-25 14:11:43 +00:00
'vue/require-toggle-inside-transition': 'off',
2023-10-18 07:38:12 +00:00
},
},
2023-10-18 07:22:29 +00:00
unocss.configs.flat,
)