1.0.1 • Published 4 months ago

@embyth/prettier-config v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

Prettier Config Documentation

Documentation for the @embyth/prettier-config module.

Usage

# Yarn:
yarn add --dev @embyth/prettier-config

# npm:
npm install --save-dev @embyth/prettier-config

# npm:
pnpm add --save-dev @embyth/prettier-config

And reference it in your .prettierrc.js file:

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

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

{
  // ...
  "prettier": "@embyth/prettier-config"
}
{
  "extends": ["@embyth/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('@embyth/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('@embyth/prettier-config');

More

1.0.1

4 months ago

1.0.0

9 months ago