From d07c5f1cb64a621aa53d587a0442a3f46922a368 Mon Sep 17 00:00:00 2001 From: Jess Telford Date: Tue, 23 Jul 2024 21:38:32 +1000 Subject: [PATCH] Disallow updating to buggy stylelint version (16.7.0) --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 95de1476ee2..6c087b6ad1e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,3 +6,10 @@ updates: schedule: interval: daily open-pull-requests-limit: 100 + ignore: + - dependency-name: 'stylelint' + # v16.7.0 introduced a regression where valid disables are being + # reported as errors. + # See Stylelint issue for more details: + # https://github.com/stylelint/stylelint/issues/7843 + versions: ['16.7.0']