@megabytelabs/prettier-config
TypeScript icon, indicating that this package has built-in type declarations

14.14.28 • Public • Published

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

Dependencies (14)

Dev Dependencies (7)

Package Sidebar

Install

npm i @megabytelabs/prettier-config

Weekly Downloads

1

Version

14.14.28

License

MIT

Unpacked Size

8.53 kB

Total Files

6

Last publish

Collaborators

  • professormanhattan