Initial commit

This commit is contained in:
root
2026-05-09 17:28:23 +02:00
commit 9d73f82529
5575 changed files with 281989 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
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",
},
},
];