Files
akvorado/console/frontend/eslint.config.mjs
Vincent Bernat f1572cd331 console/frontend: update eslint
Also fix some of the reported problems, but delegate the
"no-explicit-any" to later.
2024-11-26 11:53:23 +01:00

17 lines
438 B
JavaScript

import pluginJs from "@eslint/js";
import pluginVue from "eslint-plugin-vue";
import vueTypescriptEslintConfig from "@vue/eslint-config-typescript";
import vuePrettierEslintConfig from "@vue/eslint-config-prettier";
export default [
{
languageOptions: {
ecmaVersion: 2021,
},
},
pluginJs.configs.recommended,
...pluginVue.configs["flat/recommended"],
...vueTypescriptEslintConfig(),
vuePrettierEslintConfig,
];