Hardhat plugin for integration with solhint linter.
This plugin runs solhint on the project's sources and prints the report.
npm install --save-dev @nomiclabs/hardhat-solhint
And add the following statement to your hardhat.config.js
:
require("@nomiclabs/hardhat-solhint");
Or, if you are using TypeScript, add this to your hardhat.config.ts
:
import "@nomiclabs/hardhat-solhint";
This plugin overrides the check
task, runs solhint on the project's sources and prints the report to the console.
This plugin does not extend the environment.
There are no additional steps you need to take for this plugin to work.
Install it, run npx hardhat check
and check the Solhint report.
You may want to add a solhint configuration file to customize your rules or include a Solhint plugin.