Replies: 3 comments 5 replies
-
Honestly, I would love a "suppress all warnings" |
Beta Was this translation helpful? Give feedback.
0 replies
-
from here , the flag expects a vector (array) of numbers , so I would
remove the quotes around them
d586f32#diff-fe8496abbb64c2973db10f0703234d17eb9d104f211155751b00372dd22cdbfcR56
…On Sat, Oct 15, 2022 at 10:02 PM jmhickman ***@***.***> wrote:
Honestly, I would love a "suppress all warnings"
—
Reply to this email directly, view it on GitHub
<#3500 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AH773DWVS7WIQ6OIRV2STSDWDLWURANCNFSM6AAAAAARGABKIM>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
1 reply
-
You can use: or add them to your project's
I think this would be a good addition, can you create an issue for it? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
forge test --ignored-error-codes 2072,6321,5667,2018 --match-path test/Test.t.sol
forge test --ignored-error-codes "2072,6321,5667,2018" --match-path test/Test.t.sol
forge test --ignored-error-codes "2072, 6321, 5667, 2018" --match-path test/Test.t.sol
All of these result in the same error, just with formatting differences:
The book says it's a comma-separated list of values, but I'm not seeing that working.
Anyone know what the magic incantation is?
Beta Was this translation helpful? Give feedback.
All reactions