An opinionated Prettier config.
Using npm
:
npm install @mdsbzalam/prettier-config --save-dev
Using yarn
:
yarn add -D @mdsbzalam/prettier-config
If using npm@>7.x
, peer dependencies will be installed automatically, assuming no conflicts arise between peer dependency versions within your project.
If using npm@>5.x
, use this shortcut (yarn
will be automatically detected, if in use):
npx install-peerdeps --dev @mdsbzalam/prettier-config
Alternatively, Linux and macOS users can one of these commands:
# Using NPM:
(
export PKG=@mdsbzalam/prettier-config;
npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG@latest"
)
# Using Yarn:
(
export PKG=@mdsbzalam/prettier-config;
npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs yarn add -D "$PKG@latest"
)
If you don't need additional settings or overrides, you can set the prettier
key in package.json
:
{
"prettier": "@mdsbzalam/prettier-config"
}
Or, if you need more flexibility, you can use require
in .prettierrc.js
:
module.exports = {
...require('@mdsbzalam/prettier-config'),
// ...Override settings ad hoc
}
+————— Major version is synchronized with Prettier's major version.
| +——— Minor version has BREAKING CHANGES or features.
| | +— Patch version has non-breaking changes.
| | |
x.x.x