prettier-ignw
v0.0.0
Published
IGNW Prettier config
Downloads
3
Readme
prettier-ignw
IGNW standard prettier config.
Usage
To use this prettier config in your project
- install the prettier npm dependency
- configure your editor to use the prettier plugin
- add
"prettier": prettier-ignw
as a top level key to your projects package.json
To use but allow for overriding this prettier configuration (NOT RECOMMENDED),
create a .prettierrc.js
in your project and add
module.exports = {
...require("prettier-ignw"),
semi: false, // overide specific rules
};
Development
Add / update prettier rules as needed.
Publishing
Checkout a branch, code and commit changes, get code reviewed and approved.
Once the code is approved update the packages version (using semver style) by running
npm version X.Y.Z
Then publish the package to npm for public consumpation:
npm publish