elearning/Frontend-Learner/eslint.config.mjs

9 lines
200 B
JavaScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
import { createConfigForNuxt } from '@nuxt/eslint-config/flat'
export default createConfigForNuxt().append({
rules: {
'vue/multi-word-component-names': 'off',
'vue/no-v-html': 'off'
}
})