Skip to content

This is the shared prettier configuration used at Boehringer Ingelheim for code formatting.

License

Notifications You must be signed in to change notification settings

Boehringer-Ingelheim/prettier-config

Repository files navigation

Prettier Configuration

Prettier is an opinionated code formatter and removes all original styling and ensures that all outputted code conforms to a consistent code style across your entire codebase. - https://prettier.io/docs/en/index.html

This is the shared prettier configuration used at Boehringer Ingelheim for code formatting.

npm version npm downloads License: MIT Maintenance Conventional Commits semantic-release: angular

Usage

Install the package

npm install --save-dev @boehringer-ingelheim/prettier-config

Add the configuration

Create or update the .prettierrc.js file in your projects root directory accordingly.

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

Extend configuration

This is not recommended as the goal is to have similar settings in all projects, but if for some reason you need to add or change the configuration, it is possible in the following way.

module.exports = {
  ...require('@boehringer-ingelheim/prettier-config'),
  printWidth: 140,
};

Run

npx prettier --write .

Options

Opinionated Options that differ from the standard Prettier options.

Print Width

Specify the line length that the printer will wrap on.

printWidth: 120;

Single Quotes

Use single quotes instead of double quotes. (This only applies if there are the same number of single quotes as double quotes in the string. See the strings rationale in the prettier docs for more information)

We have chosen single quotes over double quotes, as it is the most common option for JS/TS (open-source) projects. Reference: https://bytearcher.com/articles/single-or-double-quotes-strings-javascript/

singleQuote: true;

Local Development

Install Dependencies

npm install

Test

npm test

Repair

This command may be useful when obscure errors or issues are encountered. It removes and recreates dependencies of your project.

npm run repair

Release

Important

Manual releases are not supported to ensure consistency and security, see: https://docs.npmjs.com/trusted-publishers

Releases are automated through GitHub Actions using semantic-release. It bumps the version according to conventional commits, publishes the package to npm and release a new version to GitHub.

npm run release

Show your support

Give a ⭐️ if this project helped you!

License

Copyright © 2026 Boehringer Ingelheim.
This project is MIT licensed.

Resources

About

This is the shared prettier configuration used at Boehringer Ingelheim for code formatting.

Topics

Resources

License

Stars

Watchers

Forks

Contributors 5