0.2.1 • Published 5 years ago
@flywheel-jp/prettier-config v0.2.1
@flywheel-jp/prettier-config
Installation
$ yarn add --dev @flywheel-jp/prettier-configUsage
Once the @flywheel-jp/prettier-config package is installed, you can use it by specifying the package in the prettier section of your package.json.
{
// ...
"prettier": "@flywheel-jp/prettier-config"
}Overwrite properties
If you need to overwrite some properties, import the file in a .prettierrc.js file and export the modifications, e.g:
module.export = {
...require("@flywheel-jp/prettier-config"),
overrides: [
{
files: "legacy/**/*.js",
options: {
semi: true
}
}
]
}In this case, you need to remove the prettier section from your package.json.
Release
Creating a new release automatically publishes a new version to npm. Everything automatically happens.
License
MIT © FLYWHEEL Inc.