Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gumper-x/prettier-config

That basic prettier config for all JS/TS projects
https://github.com/gumper-x/prettier-config

prettier

Last synced: 7 days ago
JSON representation

That basic prettier config for all JS/TS projects

Awesome Lists containing this project

README

        

# @gumper-x/prettier-config

That basic prettier config for all JS/TS projects

### NPM

```bash
npm i @gumper-x/prettier-config -D
```
Use in `package.json`
```json
"prettier": "@gumper-x/prettier-config",
```
### OR
Use in `.prettierrc.js`
```js
module.exports = {
...require("@gumper-x/prettier-config"),
// Your rules https://prettier.io/docs/en/options.html
};
```