An open API service indexing awesome lists of open source software.

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.

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"
]
}
```