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

https://github.com/builderhub-platform/prettier-config

Builderhub Platform Dev team Prettier configuration
https://github.com/builderhub-platform/prettier-config

prettier prettier-config

Last synced: 10 months ago
JSON representation

Builderhub Platform Dev team Prettier configuration

Awesome Lists containing this project

README

          

# @builderhub/prettier-config

[![Publish Package to npmjs](https://github.com/builderhub-platform/prettier-config/actions/workflows/publish.yml/badge.svg)](https://github.com/builderhub-platform/prettier-config/actions/workflows/publish.yml) ![npm](https://img.shields.io/npm/dw/@builderhub%2Fprettier-config) ![npm](https://img.shields.io/npm/v/@builderhub/prettier-config?color=%2357C754&label=npm%20version) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Standard extensible prettier configuration for Builderhub Platform Dev team projects

## Installation

```
npm install -D @builderhub/prettier-config
```

## Usage

In your `package.json`

```json
{
"prettier": "@builderhub/prettier-config"
}
```

If you wish you extend these settings then in your `.prettierrc.js` or `prettier.config.js`

```js
module.exports = {
...require("@builderhub/prettier-config"),
};
```