Prettier config for Brightlayer UI
npm install @brightlayer-ui/prettier-configThis package contains the Brightlayer UI prettier and editorconfig profiles used to enforce consistent code style.
yarn add --dev prettier
and the Brightlayer UI prettier config:
yarn add --dev @brightlayer-ui/prettier-config
package.json.
"prettier": "@brightlayer-ui/prettier-config",
"scripts": {
"prettier": "prettier \"src//.{ts,tsx,js,jsx,json,css,scss,html}\" --write",
}
`
The --write flag will automatically fix all code style violations. > You can update the file extensions list to suit the particular files you would like to format.
Usage
To format the files in your project, run yarn prettier`.