-
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.
Replies: 3 comments 5 replies
-
Honestly, I would love a "suppress all warnings" |
Beta Was this translation helpful? Give feedback.
-
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.
-
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.
You can use:
forge test --ignored-error-codes 2072 --ignored-error-codes 6321 --ignored-error-codes 5667 --ignored-error-codes 2018
or add them to your project's
foundry.toml
:ignored_error_codes=[2072, 6321, 5667, 2018]
I think this would be a good addition, can you create an issue for it?