-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
move v2_3 out of dev folder #13504
move v2_3 out of dev folder #13504
Conversation
contracts/package.json
Outdated
@@ -18,7 +18,7 @@ | |||
"prepublishOnly": "pnpm compile && ./scripts/prepublish_generate_abi_folder", | |||
"publish-beta": "pnpm publish --tag beta", | |||
"publish-prod": "pnpm publish --tag latest", | |||
"solhint": "solhint --max-warnings 2 \"./src/v0.8/**/*.sol\"" | |||
"solhint": "solhint --max-warnings 3 \"./src/v0.8/**/*.sol\"" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the issue, don't increment the counter. If the behaviour is desired add a solhint ignore line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just reverted it back. This change was not needed as the solhint issues was on our I*RegistryMaster.sol, which should ignore solhint check (https://github.com/smartcontractkit/chainlink/pull/13504/files#diff-bf3ee5318018ff95ee8303e7d1ed0c0855a9520d003ba32928266ec74e915e0d). So this line of change is not needed at all. I just changed it back
AUTO-11039