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

Merge release-v4.9 branch #4274

Merged
merged 14 commits into from
May 24, 2023
Merged
Prev Previous commit
Next Next commit
Disable code size warnings on exposed contracts
(cherry picked from commit d095542)
  • Loading branch information
frangio committed May 9, 2023
commit f214e476e616c8115a86a622a367e30989cb3cda
3 changes: 3 additions & 0 deletions hardhat.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ module.exports = {
},
},
warnings: {
'contracts-exposed/**/*': {
'code-size': 'off',
},
'*': {
'code-size': withOptimizations,
'unused-param': !argv.coverage, // coverage causes unused-param warnings
Expand Down