Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@veriff/prettier-config

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@veriff/prettier-config

Shared prettier configuration.

  • 2.1.1
  • npm
  • Socket score

Version published
Weekly downloads
88
decreased by-11.11%
Maintainers
0
Weekly downloads
 
Created
Source

prettier-config

This package contains Prettier configuration that enforce code formatting conventions.

Usage

At first, install prettier and the package:

npm i prettier @veriff/prettier-config --save-dev

To apply the configuration you need to add prettier to your project's dependencies and create a .prettierrc.json file in the root with the following contents:

"@veriff/prettier-config"

If you like to overrride any prettier options, create .prettierrc.js (docs):

module.exports = {
    ...require("@veriff/prettier-config"),
    //
    // any prettier option overrides -  https://prettier.io/docs/en/options.html
    //
    'printWidth': 150,
};

With ESLint

Setting up just eslint with @veriff/eslint-config is recommended and usually enough. However, you still might prefer to let prettier take care of formatting. In this case you need to adjust eslint configuration to avoid any possible conflicts with prettier.

Ar first, install eslint-config-prettier to disable conflicting eslint rules:

npm i eslint-config-prettier --save-dev

Then extend your eslint configuration with it:

{
  "extends": [
    "@veriff/eslint-config/<config-you-use>",
    "prettier"
  ]
}

This will disable all eslint rules that might conflict with prettier. It means that code formatting is now on prettier and you should make sure it works on every commit and checks formatting on the CI.

More details on this approach you can find in the official prettier documentation.

With Stylelint

Setting up just stylelint with @veriff/stylelint-config is recommended and usually enough. However, you still might prefer to let prettier take care of formatting. In this case you need to adjust stylelint configuration to avoid any possible conflicts with prettier.

Ar first, install stylelint-config-prettier to disable conflicting stylelint rules:

npm i stylelint-config-prettier --save-dev

Then extend your stylelint configuration with it:

{
  "extends": [
    "@veriff/stylelint-config",
    "stylelint-config-prettier"
  ]
}

This will disable all stylelint rules that might conflict with prettier. It means that code formatting is now on prettier and you should make sure it works on every commit and checks formatting on the CI.

More details on this approach you can find in the official prettier documentation.

FAQs

Package last updated on 26 Sep 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc