https://github.com/doist/prettier-config
Prettier config for Doist's JavaScript and TypeScript projects
https://github.com/doist/prettier-config
Last synced: 11 months ago
JSON representation
Prettier config for Doist's JavaScript and TypeScript projects
- Host: GitHub
- URL: https://github.com/doist/prettier-config
- Owner: Doist
- Created: 2020-05-26T11:46:23.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2023-09-19T19:04:29.000Z (almost 3 years ago)
- Last Synced: 2024-04-26T05:41:06.109Z (about 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 20.5 KB
- Stars: 3
- Watchers: 10
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# `@doist/prettier-config`
> Doist global [prettier](https://prettier.io) config.
## Usage
**Install**:
```sh
npm install --save-dev @doist/prettier-config
```
**Edit `package.json`**:
```jsonc
{
// ...
"prettier": "@doist/prettier-config"
}
```
## Release a new package
This project uses [semantic versioning](https://semver.org/). A new version will be published to both npm and GitHub Package Registry when a new tag is pushed. Please make sure an entry is added to [CHANGELOG.md](CHANGELOG.md).
```
git checkout master
npm version
git push --follow-tags
```