@siturra/prettier-config
v1.0.3
Published
Personal Prettier config
Downloads
53
Readme
Personal Prettier config
My personal Prettier config.
Usage
Install
using npm
npm install --save-dev @siturra/prettier-config
or yarn
yarn add --dev @siturra/prettier-config
Add prettier
add in package.json
"prettier": "@siturra/prettier-config"
OR
Create a .prettierrc
, .prettierrc.yaml
, .prettierrc.yml
or .prettierrc.json
file and export a string.
"@siturra/prettier-config"
OR
Note: This method does not offer a way to extend the configuration to overwrite some properties from the shared configuration. If you need to do that, import the file in a
prettier.config.js
or.prettierrc.js
file and export the modifications, e.g:module.exports = { ...require('@siturra/prettier-config'), semi: false }
References
- https://prettier.io/docs/en/configuration.html
- Prettier share example https://github.com/azz/prettier-config
- https://www.codereadability.com/automated-code-formatting-with-prettier