1.1.0 • Published 3 years ago
@tksst/prettier-config v1.1.0
Usage
Install
$ npm install --save-dev @tksst/prettier-configUsing the config
To apply the config simply, put the below to package.json:
{
// ...
"prettier": "@tksst/prettier-config"
}Or create a .prettierrc file, .prettierrc.json, .prettierrc.yml, .prettierrc.yaml, or .prettierrc.json5 file and just put:
"@tksst/prettier-config"Or if you want to extend the config, import the config on prettier.config.js or .prettierrc.js:
module.exports = {
...require("@tksst/prettier-config")
// and your settings here
};