0.1.0 • Published 6 years ago
solhint-plugin-beam v0.1.0
Solhint Plugin for the Beam Network Style Guide (solhint-plugin-beam)
A solhint plugin to enforce Beam's style rules
Provides solhint rules to enforce the extra Solidity style rules used at Beam Network.
Table of Contents
Install
Install via NPM:
npm install --save-dev solhint-plugin-beamAdd to your solhint configuration and enable some rules:
{
"plugins": [
"beam"
],
"rules": {
"beam/underscore-function-args": "error"
}
}Usage
Provides the following rules:
beam/underscore-function-argsFunction arguments must start with_to help distinguish them from storage variables.