Socket
Socket
Sign inDemoInstall

@megabytelabs/prettier-config

Package Overview
Dependencies
98
Maintainers
1
Versions
905
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @megabytelabs/prettier-config

Simplifies configuring Prettier by bundling plugins and configuring them


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Prettier Config Documentation

Documentation for the @megabytelabs/prettier-config module.

Usage

Yarn:

yarn add --dev @megabytelabs/prettier-config

NPM

npm install --save-dev @megabytelabs/prettier-config

And reference it in your .prettierrc.js file:

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

Or you can, of course, choose your preferred way of using configs:

package.json
{
  // ...
  "prettier": "@megabytelabs/prettier-config"
}
.prettierrc or .prettierrc.json
{
  "extends": ["@megabytelabs/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('@megabytelabs/prettier-config'),

  // Add custom options bellow:
  useTabs: true
};

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('@megabytelabs/prettier-config');

More

Keywords

FAQs

Last updated on 06 Nov 2021

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