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