From 320012b44dabea4170f09c8ff7633915c114ea94 Mon Sep 17 00:00:00 2001 From: Peace-Maker Date: Mon, 26 Aug 2024 23:23:04 +0200 Subject: [PATCH] Exclude vue and eslint from major updates eslint 9 requires more work due to switching to flat configs by default. Vue 3 and Vuetify 3 need more work. --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a781f45..03ef646 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -18,8 +18,16 @@ updates: groups: production-dependencies: dependency-type: "production" + exclude-patterns: + - "vue" + - "vue-router" + - "vuetify" development-dependencies: dependency-type: "development" + exclude-patterns: + - "eslint" + - "@typescript-eslint/parser" + - "@typescript-eslint/eslint-plugin" - package-ecosystem: "gomod" directory: "/"