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: 17 days ago
JSON representation
That basic prettier config for all JS/TS projects
- Host: GitHub
- URL: https://github.com/gumper-x/prettier-config
- Owner: Gumper-x
- License: mit
- Created: 2021-12-28T07:24:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-04-05T12:09:17.000Z (about 3 years ago)
- Last Synced: 2025-02-03T20:05:53.972Z (over 1 year ago)
- Topics: prettier
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
};
```