Socket
Socket
Sign inDemoInstall

solhint-plugin-prettier

Package Overview
Dependencies
10
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    solhint-plugin-prettier

This [Solhint](https://github.com/solhint-community/solhint-community) plugin lets you check that your solidity files are correctly formatted according to the [solidity plugin for Prettier](https://github.com/prettier-solidity/prettier-plugin-solidity). E


Version published
Weekly downloads
24K
increased by29.93%
Maintainers
1
Install size
74.5 kB
Created
Weekly downloads
 

Readme

Source

solhint-plugin-prettier

This Solhint plugin lets you check that your solidity files are correctly formatted according to the solidity plugin for Prettier. Each difference with how prettier would format it is reported as an individual issue.

Setup

First install the necessary packages:

npm install --save-dev solhint-community solhint-plugin-prettier prettier prettier-plugin-solidity

Then add a .solhint.json configuration file:

{
  "plugins": ["prettier"],
  "rules": {
    "prettier/prettier": "error"
  }
}

This rule will emit an error for each difference between your code and how prettier-solidity would format it. You can also set it to warning instead of error if you prefer that.

Keywords

FAQs

Last updated on 31 Oct 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc