@alexmchan/prettier-config
v1.0.2
Published
Just a prettier config in case I forget these two settings and so version bumps are all that will be needed to update dependent proejcts.
Downloads
5
Readme
About
Just a prettier config in case I forget these two settings and so version bumps are all that will be needed to update dependent proejcts.
{
semi: false,
singleQuote: true,
}
Installation
$ yarn add @alexmchan/prettier-config
Add a lint to the package.json:
"prettier": "@alexmchan/prettier-config",
or
// .prettierrc.js
module.exports = {
...require("@alexmchan/prettier-config"),
semi: false,
};