# eslint-wrapper-plugin

> Wrap your ESLint config with ease.

Latest version **1.0.0** (published 2017-11-21) · MIT license · 0 weekly downloads

## Install

```sh
npm install eslint-wrapper-plugin
pnpm add eslint-wrapper-plugin
yarn add eslint-wrapper-plugin
bun add eslint-wrapper-plugin
```

## 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.0 |
| Published | 2017-11-21 |
| First published | 2017-11-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=4 |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Dieter Luypaert |
| Maintainers | moeriki |
| Keywords | eslint, shareable, config, plugin |

## Links

- npm: https://www.npmjs.com/package/eslint-wrapper-plugin
- npm.io page: https://npm.io/package/eslint-wrapper-plugin

## 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.0 (latest) — 2017-11-21

## README

<p align="center">
  <h3 align="center">ESLint Wrapper Plugin 📦</h3>
  <p align="center">Wrap your ESLint config and its peer dependency plugins with ease.<p>
  <p align="center">
    <a href="https://www.npmjs.com/package/eslint-wrapper-plugin">
      <img src="https://img.shields.io/npm/v/eslint-wrapper-plugin.svg" alt="npm version">
    </a>
    <a href="https://travis-ci.org/Moeriki/eslint-wrapper-plugin">
      <img src="https://travis-ci.org/Moeriki/eslint-wrapper-plugin.svg?branch=master" alt="Build Status"></img>
    </a>
    <a href="https://coveralls.io/github/Moeriki/eslint-wrapper-plugin?branch=master">
      <img src="https://coveralls.io/repos/github/Moeriki/eslint-wrapper-plugin/badge.svg?branch=master" alt="Coverage Status"></img>
    </a>
    <a href="https://david-dm.org/moeriki/eslint-wrapper-plugin">
      <img src="https://david-dm.org/moeriki/eslint-wrapper-plugin/status.svg" alt="dependencies Status"></img>
    </a>
  </p>
</p>

---

## Install

```sh
npm install --save eslint-wrapper-plugin
```

## Usage

Replace `YOURPLUGIN` and `YOURCONFIG` accordingly.

_package.json_

```json
{
  "name": "eslint-plugin-YOURPLUGIN",
  "version": "v1",
  "dependencies": {
    "eslint-wrapper-plugin": "*"
  }
}
```

_index.js_

```js
const wrap = require('eslint-wrapper-plugin');
module.exports = wrap({
  configs: {
    recommended: 'eslint-config-YOURCONFIG',
  },
  plugins: [/* your config's peer dependency plugins, eg: 'import' */],
  prefix: 'YOURPLUGIN',
});
```

## Learn by example

* [eslint-config-muriki](/moeriki/eslint-config-muriki)
* [eslint-plugin-muriki](/moeriki/eslint-plugin-muriki)

---
_Source: https://npm.io/package/eslint-wrapper-plugin · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
