eslint.config.js 403 B

12345678910111213141516
  1. const antfu = require('@antfu/eslint-config').default
  2. const unocss = require('@unocss/eslint-plugin')
  3. module.exports = antfu(
  4. {
  5. rules: {
  6. 'no-console': 'off',
  7. 'node/prefer-global/process': 'off',
  8. 'vue/custom-event-name-casing': 'off',
  9. 'vue/component-name-in-template-casing': 'off',
  10. 'vue/require-toggle-inside-transition': 'off',
  11. },
  12. },
  13. unocss.configs.flat,
  14. )