1.0.2 • Published 5 years ago
@alexmchan/prettier-config v1.0.2
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-configAdd a lint to the package.json:
 "prettier": "@alexmchan/prettier-config",or
// .prettierrc.js
module.exports = {
  ...require("@alexmchan/prettier-config"),
  semi: false,
};