Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(build): prevent Dependabot opening PR to bump prettier #32687

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ updates:

- package-ecosystem: "npm"
ignore:
# not until React >= 18.0.0
# TODO: remove once project's React >= 18.0.0
- dependency-name: "storybook"
- dependency-name: "@storybook*"
# has to coordinate with the version in pre-commit as well
# and prettify whole codebase to avoid breaking CI
# TODO: agentic AI can do this?
- dependency-name: "prettier"
directory: "/superset-frontend/"
schedule:
interval: "monthly"
Expand Down Expand Up @@ -329,7 +333,7 @@ updates:
- package-ecosystem: "npm"
directory: "/superset-frontend/packages/superset-ui-core/"
ignore:
# not until React >= 18.0.0
# TODO: remove once project's React >= 18.0.0
- dependency-name: "react-markdown"
- dependency-name: "remark-gfm"
schedule:
Expand All @@ -342,6 +346,10 @@ updates:

- package-ecosystem: "npm"
directory: "/superset-frontend/packages/superset-ui-demo/"
ignore:
# TODO: remove once project's React >= 18.0.0
- dependency-name: "storybook"
- dependency-name: "@storybook*"
schedule:
interval: "monthly"
labels:
Expand Down
Loading