Prettier config
This package includes a base prettier configuration to be used in all websites for NLO.
Usage
Install using npm install @nlo/prettier-config
Add to your project in your package.json:
{
"prettier": "@nlo/prettier-config"
}
Or add to your prettier (.prettierrc.js) config using:
module.exports = {
...require("@nlo/prettier-config"),
// Your overrides here
};
Prettier-ignore
As of writing, it's not possible to extend a .prettierignore file. So please use the one inside this repository as a template for your own. If you find handy things to add, please add it to this repository.