3.0.0 • Published 3 months ago

@strv/prettier-config v3.0.0

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

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:

{
  // ...
  "prettier": "@strv/prettier-config"
}
{
  "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

3.0.0

3 months ago

2.0.0-alpha.0

3 years ago

2.0.0

3 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.1.1-alpha.0

5 years ago