1.0.3 • Published 4 years ago
@siturra/prettier-config v1.0.3
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 }