A solhint plugin to enforce Eco's style rules
Provides solhint rules to enforce the extra Solidity style rules used at Eco Network.
Install via NPM:
npm install --save-dev solhint-plugin-eco
Add to your solhint configuration and enable some rules:
{
"plugins": [
"eco"
],
"rules": {
"eco/underscore-function-args": "error"
}
}
Provides the following rules:
eco/underscore-function-args
Function arguments must start with_
to help distinguish them from storage variables.