https://github.com/eco-incorp/solhint-plugin-eco
A solhint plugin to enforce Eco's style rules
https://github.com/eco-incorp/solhint-plugin-eco
linter-plugin linting-rules solhint-plugin solidity
Last synced: about 2 months ago
JSON representation
A solhint plugin to enforce Eco's style rules
- Host: GitHub
- URL: https://github.com/eco-incorp/solhint-plugin-eco
- Owner: eco-incorp
- License: mit
- Created: 2019-03-01T22:20:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T17:12:53.000Z (over 3 years ago)
- Last Synced: 2025-10-30T23:40:55.825Z (7 months ago)
- Topics: linter-plugin, linting-rules, solhint-plugin, solidity
- Language: JavaScript
- Homepage:
- Size: 399 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Solhint Plugin for the Eco Inc Style Guide _(solhint-plugin-eco)_
[](https://travis-ci.com/eco/solhint-plugin-eco)
> A solhint plugin to enforce Eco's style rules
Provides solhint rules to enforce the extra Solidity style rules used at Eco
Network.
## Table of Contents
- [Install](#install)
- [Usage](#usage)
- [Contributing](#contributing)
- [License](#license)
## Install
Install via NPM:
```bash
npm install --save-dev solhint-plugin-eco
```
Add to your solhint configuration and enable some rules:
```json
{
"plugins": [
"eco"
],
"rules": {
"eco/underscore-function-args": "error"
}
}
```
## Usage
Provides the following rules:
- `eco/underscore-function-args`
Function arguments must start with `_` to help distinguish them from storage
variables.
## License
[MIT (c) Eco Inc](./LICENSE)