Skip to content

Commit

Permalink
chore(deps): update dependency @vue/eslint-config-typescript to v14.3…
Browse files Browse the repository at this point in the history
….0 (#716)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: devtobi <[email protected]>
  • Loading branch information
renovate[bot] and devtobi authored Jan 17, 2025
1 parent f2fa0e1 commit ec25251
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 17 deletions.
24 changes: 13 additions & 11 deletions refarch-webcomponent/eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
import js from "@eslint/js";
import jsEslintConfig from "@eslint/js";
import vuePrettierEslintConfigSkipFormatting from "@vue/eslint-config-prettier/skip-formatting";
import vueTsEslintConfig from "@vue/eslint-config-typescript";
import {
defineConfigWithVueTs,
vueTsConfigs,
} from "@vue/eslint-config-typescript";
import { ESLint } from "eslint";
import vueEslintConfig from "eslint-plugin-vue";

export default [
...ESLint.defaultConfig,
js.configs.recommended,
...vueEslintConfig.configs["flat/recommended"],
...vueTsEslintConfig({
extends: ["strict", "stylistic"],
}),
export default defineConfigWithVueTs(
ESLint.defaultConfig,
jsEslintConfig.configs.recommended,
vueEslintConfig.configs["flat/essential"],
vueTsConfigs.strict,
vueTsConfigs.stylistic,
vuePrettierEslintConfigSkipFormatting,
{
ignores: ["dist", "target", "node_modules", "env.d.ts"],
Expand All @@ -24,5 +26,5 @@ export default [
{ registeredComponentsOnly: false },
],
},
},
];
}
);
11 changes: 6 additions & 5 deletions refarch-webcomponent/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion refarch-webcomponent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@types/node": "22.10.7",
"@vitejs/plugin-vue": "5.2.1",
"@vue/eslint-config-prettier": "10.1.0",
"@vue/eslint-config-typescript": "14.2.0",
"@vue/eslint-config-typescript": "14.3.0",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.7.0",
"eslint": "9.18.0",
Expand Down

0 comments on commit ec25251

Please sign in to comment.