Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@boehringer-ingelheim/prettier-config
Advanced tools
Shared prettier configuration used at Boehringer Ingelheim for code formatting
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 install --save-dev @boehringer-ingelheim/prettier-config
Create or update the .prettierrc.js
file in your projects root directory accordingly.
module.exports = require("@boehringer-ingelheim/prettier-config");
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,
};
npx prettier --write .
Opinionated Options that differ from the standard Prettier options.
Specify the line length that the printer will wrap on.
printWidth: 120;
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;
npm install
npm test
This command may be useful when obscure errors or issues are encountered. It removes and recreates dependencies of your project.
npm run repair
Fully automated version management and package publishing via semantic-release. It bumps the version according to conventional commits, publishes the package to npm and release a new version to GitHub.
Make sure that the secrets GITHUB_TOKEN
and NPM_TOKEN
are available in GitHub repository.
npm run release:ci
Make sure that the environment variables GITHUB_TOKEN
and NPM_TOKEN
are set or declared in .env
and a productive build was previously created via npm run build
.
npm run release
Give a ⭐️ if this project helped you!
Copyright © 2024 Boehringer Ingelheim.
This project is MIT licensed.
2.0.0-next.1 (2024-05-09)
FAQs
Shared prettier configuration used at Boehringer Ingelheim for code formatting
The npm package @boehringer-ingelheim/prettier-config receives a total of 327 weekly downloads. As such, @boehringer-ingelheim/prettier-config popularity was classified as not popular.
We found that @boehringer-ingelheim/prettier-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.