Replies: 1 comment
-
Well, that depends a lot on what you are doing. But one idea that comes to mind is using preprocess: {
eachLine: hre => ({
transform: line => {
return line.includes("// temp:") ? line.replace(/\s*\/\/ temp:.*/, "") : line
}
})
} To be honest, I would avoid doing this, because it could cause some unexpected issues down the line. As a contrived example: if you add a string value that happens to have That plugin also has a I hope that helps! |
Beta Was this translation helpful? Give feedback.
-
Is is somehow possible to skip some comments from being uploaded to etherscan, which are for internal use only?
Beta Was this translation helpful? Give feedback.
All reactions