StandardJS compliant Prettier config
npm install @software-thing/prettier-standard-configThis is a default configuration for Prettier to format code according to the StandardJS specification.
Installation is very simple:
``bash`
yarn add -D @software-thing/prettier-standard-configpackage.json
Then just the configuration (the easiest way is to set it like this in your ):
`jsonc
// package.json
{
"prettier": "@software-thing/prettier-standard-config"
}
``