# eslint-config-civa86

> JavaScript ES6 Style Configuration

Latest version **2.0.0** (published 2017-05-09) · MIT license · 0 weekly downloads

## Install

```sh
npm install eslint-config-civa86
pnpm add eslint-config-civa86
yarn add eslint-config-civa86
bun add eslint-config-civa86
```

## 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 | 2.0.0 |
| Published | 2017-05-09 |
| First published | 2017-05-09 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | civa86 |

## Links

- npm: https://www.npmjs.com/package/eslint-config-civa86
- Repository: https://github.com/civa86/eslint-config-civa86
- Homepage: https://github.com/civa86/eslint-config-civa86#readme
- Issues: https://github.com/civa86/eslint-config-civa86/issues
- npm.io page: https://npm.io/package/eslint-config-civa86

## Recent versions

- 2.0.0 (latest) — 2017-05-09
- 1.0.0 — 2017-05-09

## README

# JavaScript ES6 Style Configuration 

ES6 Style Configuration for [ESLint](http://eslint.org/).

## Usage 

```bash
$ npm install eslint-config-civa86 --save-dev
```

ESLint configuration

```json
{
    "extends": "civa86"
}
```

#### Webpack 1.x with eslint-loader

eslint-loader will search configuration in

- `.eslintrc` file at the root of the project
- `eslintConfig` property inside package.json

Example: package.json

```json
{
    "eslintConfig": {
        "extends": "civa86"
    }
}
```

#### Webpack 2.x with eslint-loader

In your webpack configuration

```javascript
module.exports = {
  // ...
  module: {
    rules: [
      {
        test: /\.js$/,
        exclude: /node_modules/,
        loader: "eslint-loader",
        options: {
          extends: "civa86"
        }
      },
    ],
  },
  // ...
}
```

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