24 lines
768 B
JavaScript
24 lines
768 B
JavaScript
import globals from "globals";
|
|
import pluginJs from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
import pluginVue from "eslint-plugin-vue";
|
|
|
|
|
|
export default [
|
|
{files: ["**/*.{js,mjs,cjs,ts,vue}"]},
|
|
{languageOptions: {globals: {...globals.browser, ...globals.node}}},
|
|
pluginJs.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
...pluginVue.configs["flat/essential"],
|
|
{files: ["**/*.vue"], languageOptions: {parserOptions: {parser: tseslint.parser}}},
|
|
{
|
|
rules: {
|
|
semi: "error",
|
|
"@typescript-eslint/no-explicit-any": "off",
|
|
// "no-unused-vars": "off",
|
|
// "@typescript-eslint/no-unused-vars": ["off"],
|
|
"vue/multi-word-component-names":"off",
|
|
}
|
|
}
|
|
];
|