Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 515 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 515 Bytes

Prettier Settings:

npm Downloads Last Year

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",

    ...
}