Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gumper-x/prettier-config
- Owner: Gumper-x
- License: mit
- Created: 2021-12-28T07:24:38.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-04-05T12:09:17.000Z (over 1 year ago)
- Last Synced: 2024-09-22T14:06:55.816Z (about 2 months 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
};
```