https://github.com/odanado/solhint-config-prettier
Disable rules that may conflict with solhint and Prettier.
https://github.com/odanado/solhint-config-prettier
prettier solhint
Last synced: 3 months ago
JSON representation
Disable rules that may conflict with solhint and Prettier.
- Host: GitHub
- URL: https://github.com/odanado/solhint-config-prettier
- Owner: odanado
- License: mit
- Created: 2020-12-27T18:47:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-30T15:56:07.000Z (over 4 years ago)
- Last Synced: 2025-02-25T11:49:50.104Z (3 months ago)
- Topics: prettier, solhint
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# solhint-config-prettier
Disable rules that may conflict with [solhint](https://github.com/protofire/solhint) and [Prettier](https://github.com/prettier/prettier).
## Installation
```bash
npm install --save-dev solhint-config-prettier
```## Configuration
Add solhint-config-prettier to `extends` in `.solhint.json`.```json
{
"extends": [
"solhint:default",
"prettier"
]
}
```