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

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

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
```