@nathalyaricci/prettier-config
v1.1.0
Published
A shareable Prettier configuration
Downloads
1
Maintainers
Readme
prettier-config
This is my personal Prettier config.
To use it, follow the steps below:
Installation
- Use your favorite package manager (e.g.
npm
) to install it as a dev dependency:
npm i -D @nathalyaricci/prettier-config
- Create a
.prettierrc
file and extend the config using strings:
"@nathalyaricci/prettier-config"
If you want to override some options, you can extend the package using "extends"
:
{
"extends": "@nathalyaricci/prettier-config",
"overrides": [
{
// ...your configs
}
]
}