@bukhalo/prettier-config

Personal prettier configuration by Aleksandr Bukhalo

Usage no npm install needed!

<script type="module">
  import bukhaloPrettierConfig from 'https://cdn.skypack.dev/@bukhalo/prettier-config';
</script>

README

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
};