import globals from "globals"; import pluginVue from "eslint-plugin-vue"; export default [ { ignores: [ "node_modules/**", "public/**", "vendor/**", "dist/**", "build/**", ], }, ...pluginVue.configs["flat/essential"], { languageOptions: { globals: { ...globals.browser, ...globals.node, Alpine: "readonly", $: "readonly", jQuery: "readonly", }, }, rules: { "no-console": "warn", "no-debugger": "warn", "vue/multi-word-component-names": "off", "vue/no-v-html": "off", }, }, ];