@siturra/prettier-config
v1.0.3
Published
Personal Prettier config
Downloads
149
Readme
Personal Prettier config
My personal Prettier config.
Usage
Install
using npm
npm install --save-dev @siturra/prettier-configor yarn
yarn add --dev @siturra/prettier-configAdd 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.jsor.prettierrc.jsfile 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
