Skip to content

Commit

Permalink
Make Dependabot ignore eslint & eslint-*
Browse files Browse the repository at this point in the history
Dependabot keeps timing out before completing and on inspection of the
logs, the latest package it attempts to install is `eslint-plugin-n`.
This commit makes Dependabot ignore the eslint packages until we are
able to update them all, as this is currently blocked by not all the
plugins supporting the latest version of the `eslint` config.
  • Loading branch information
patrickpatrickpatrick committed May 23, 2024
1 parent 63ecf74 commit 2a929e9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ updates:
patterns:
- '@typescript-eslint/*'
- 'editorconfig-checker'
- 'eslint'
- 'eslint-*'
- 'standard'
- 'prettier'
- 'stylelint'
Expand Down Expand Up @@ -64,6 +62,9 @@ updates:
exclude-patterns:
- '@types/jest'
- '@types/jest-*'
ignore:
- dependency-name: 'eslint-*'
- dependency-name: 'eslint'

reviewers:
- alphagov/design-system-developers
Expand Down

0 comments on commit 2a929e9

Please sign in to comment.