README
solhint-plugin-buidler
This Solhint plugin has rules for the buidler
ecosystem. Right now the only rule is no-console
to remember to remove your console calls before committing.
Setup
First install the necessary packages:
npm install --save-dev solhint solhint-plugin-buidler
Then add a .solhint.json
configuration file:
{
"plugins": ["buidler"],
"rules": {
"buidler/no-console": "warn"
}
}