2.0.1 • Published 11 months ago

@lmc-eu/prettier-config v2.0.1

Weekly downloads
5
License
BSD-3-Clause
Repository
github
Last release
11 months ago

Prettier Config Documentation

Documentation for the @lmc-eu/prettier-config module.

Usage

# Yarn:
yarn add --dev @lmc-eu/prettier-config

# npm:
npm install --save-dev @lmc-eu/prettier-config

And reference it in your .prettierrc.js file:

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

Or you can choose your preffered way of using configs:

{
  // ...
  "prettier": "@lmc-eu/prettier-config"
}
"@lmc-eu/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('@lmc-eu/prettier-config'),

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

Notes

Prettier Version

Versions of prettier before v1.17 did not feature the possibility of using 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('@lmc-eu/prettier-config');

More

2.0.1

11 months ago

2.0.0

2 years ago

1.2.4

2 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.0

4 years ago

1.1.1

4 years ago

1.2.1

4 years ago

1.1.0

4 years ago

1.0.3

4 years ago

1.0.1

4 years ago