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

add logFilters to yarn config, so it's not giving us warnings we don't care about #18500

Merged
merged 2 commits into from
Jun 17, 2022
Merged
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
14 changes: 14 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# documentation: https://yarnpkg.com/configuration/yarnrc

compressionLevel: 0

enableGlobalCache: true
Expand All @@ -16,3 +18,15 @@ unsafeHttpWhitelist:
- localhost

yarnPath: .yarn/releases/yarn-3.1.1.cjs

logFilters:
- code: "YN0005"
level: "discard"
- code: "YN0076"
level: "discard"
- pattern: "@workspace:examples"
level: "discard"
- pattern: "@storybook/root@workspace:."
level: "discard"
- pattern: "@workspace:addons/storyshots/"
level: "discard"