solhint-plugin-buidler
v0.0.4
Published
A Solhint plugin for the buidler ecosystem
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-buidlerThen add a .solhint.json configuration file:
{
"plugins": ["buidler"],
"rules": {
"buidler/no-console": "warn"
}
}