solhint-plugin-buidler

A Solhint plugin for the buidler ecosystem

Usage no npm install needed!

<script type="module">
  import solhintPluginBuidler from 'https://cdn.skypack.dev/solhint-plugin-buidler';
</script>

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"
  }
}