prettier-es5
v0.0.4
Published
Prettier settings for trailing comma, tab width, semi colons and single quotes.
Maintainers
Readme
Prettier Settings:
Installation
Install this package with npm i -D prettier-es5 as a developer dependency.
Content
It adds these prettier settings to your project:
{
"trailingComma": "es5",
"tabWidth": 4,
"semi": false,
"singleQuote": true
}Usage
In order to use this config, you need to add the following to your package.json file:
{
...
"prettier": "prettier-es5",
...
}