1.0.0 • Published 4 years ago

@bukhalo/prettier-config v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Personal prettier configuration by Aleksandr Bukhalo

How to use

Define this package as Prettier config in your package.json:

{
  // ...
  "prettier": "@bukhalo/prettier-config"
}

Or require this package in your .prettierrc.js, if you want to overwrite some properties of this configuration:

module.exports = {
  ...require("@bukhalo/prettier-config"),
  semi: false
};