solhint-plugin-avoid-console
v1.0.0
Published
A solhint plugin to check the existence of console statements.
Downloads
3
Maintainers
Readme
Solhint-plugin-avoid-console
This solhint plugin helps avoid the usage of console statement in production env.
Install
npm install --save-dev solhint-plugin-avoid-console
Usage
Add the following info to your solhint configuration:
{
"plugins": ["avoid-console"],
"rules": {
"avoid-console/no-console-log": "error"
}
}