mirror of
https://github.com/bastienwirtz/homer.git
synced 2025-08-18 12:29:55 +02:00
chore: dependency updates
This commit is contained in:
@@ -1,21 +1,23 @@
|
||||
import globals from "globals";
|
||||
import pluginJs from "@eslint/js";
|
||||
import pluginVue from "eslint-plugin-vue";
|
||||
import eslintConfigPrettier from "@vue/eslint-config-prettier";
|
||||
|
||||
import js from "@eslint/js";
|
||||
import pluginVue from 'eslint-plugin-vue'
|
||||
import eslintConfigPrettier from "eslint-config-prettier";
|
||||
|
||||
/** @type {import('eslint').Linter.Config[]} */
|
||||
export default [
|
||||
js.configs.recommended,
|
||||
...pluginVue.configs['flat/recommended'],
|
||||
{ files: ["**/*.{js,mjs,cjs,vue}"] },
|
||||
{ languageOptions: { globals: globals.browser } },
|
||||
pluginJs.configs.recommended,
|
||||
...pluginVue.configs["flat/recommended"],
|
||||
eslintConfigPrettier,
|
||||
{
|
||||
files: ['**/*.{vue,js,jsx,mjs,cjs}'],
|
||||
rules: {
|
||||
"vue/multi-word-component-names": "off",
|
||||
"vue/require-default-prop": "off",
|
||||
"vue/no-v-html": "off",
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
ignores: ["**/dist/"],
|
||||
}
|
||||
ignores: ["*.d.ts", "**/coverage", "**/dist"],
|
||||
},
|
||||
];
|
||||
|
Reference in New Issue
Block a user