# @smcv/prettier-config

> A Prettier shareable config for projects using 'Prettier' and 'JavaScript Standard Style'.

Latest version **1.0.1** (published 2024-01-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install @smcv/prettier-config
pnpm add @smcv/prettier-config
yarn add @smcv/prettier-config
bun add @smcv/prettier-config
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2024-01-09 |
| First published | 2023-07-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Yuri Sementsov |
| Maintainers | semencov |
| Keywords | eslint, eslintconfig, eslint-config, eslintplugin, eslint-plugin, lint, prettier, prettierconfig, prettier-config, standard, standard style |

## Links

- npm: https://www.npmjs.com/package/@smcv/prettier-config
- npm.io page: https://npm.io/package/@smcv/prettier-config

## Alternatives

- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) — 2.9M weekly downloads
- [eslint-config-expo](https://npm.io/package/eslint-config-expo.md) — 1.5M weekly downloads
- [@matter/protocol](https://npm.io/package/@matter/protocol.md) — 63.5K weekly downloads
- [@eventcatalog/linter](https://npm.io/package/@eventcatalog/linter.md) — 24.8K weekly downloads
- [@inrupt/eslint-config-base](https://npm.io/package/@inrupt/eslint-config-base.md) — 4.5K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2024-01-09
- 1.0.0 — 2023-07-31

## README

# @smcv/prettier-config

A Prettier [shareable config](https://prettier.io/docs/en/configuration.html#sharing-configurations )
for projects using **[Prettier](https://prettier.io/ )** and 
**[JavaScript Standard Style](https://standardjs.com/ )** as ESLint rules or
separate processes.

## Installation

```
npm install --save-dev @smcv/prettier-config
```

_This is only a shareable configuration. It does not install Prettier, Standard,
ESLint, or any other part of the tool chain._

## Usage

Reference it in `package.json` using the `prettier` property:

```json
{
  "name": "my-projects-name",
  "prettier": "@smcv/prettier-config",
  "devDependencies" : {
    "@smcv/prettier-config": "^1.0.0"
  }
}
```

If you don't want to use `package.json`, you can use any of the supported
extensions to export a string:

```jsonc
// `.prettierrc.json`
"@smcv/prettier-config"
```

```javascript
// `prettier.config.js` or `.prettierrc.js`
module.exports = '@smcv/prettier-config'
```

---
_Source: https://npm.io/package/@smcv/prettier-config · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
