Exciting release!Introducing "safe npm". Learn more
Socket
Log inDemoInstall

@strv/prettier-config

Package Overview
Dependencies
0
Maintainers
5
Versions
7
Issues
File Explorer

Advanced tools

@strv/prettier-config

STRV's ESLint config for Prettier

    2.0.0latest
    GitHub

Version published
Maintainers
5
Weekly downloads
440
increased by17.65%

Weekly downloads

Readme

Source

Prettier Config Documentation

Documentation for the @strv/prettier-config module.

Usage

# Yarn: yarn add --dev @strv/prettier-config # npm: npm install --save-dev @strv/prettier-config

And reference it in your .prettierrc.js file:

module.exports = require('@strv/prettier-config')

Or you can of course choose your preffered way of using configs:

package.json { // ... "prettier": "@strv/prettier-config" }
.prettierrc or .prettierrc.json { "extends": ["@strv/prettier-config"] }

Note: If you are using prettier < v1.17 check this note.

Extending

To extend the current options you will need to create a .prettierrc.js and add the following:

module.exports = { ...require('@strv/prettier-config'), // Add custom options bellow: useTabs: true, }

Notes

Prettier version

Versions of prettier prior to v1.17 did not feature the possibility to use a shared config via package.json. The way to do it is similar to when extending, except that you can just export the config directly:

// .prettierrc.js module.exports = require('@strv/prettier-config')

More

Keywords

FAQs

Last updated on 07 Sep 2021

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • 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