You've already forked Atomcms-edit
Initial commit
This commit is contained in:
Executable
+32
@@ -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",
|
||||
},
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user