# eslint-config-dgeibi

> dgeibi's personal ESLint config

Latest version **6.0.0** (published 2019-06-07) · MIT license · 0 weekly downloads

## Install

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

## 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 | 6.0.0 |
| Published | 2019-06-07 |
| First published | 2017-08-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | dgeibi |
| Maintainers | dgeibi |

## Links

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

## Dependencies (5)

- [babel-eslint](https://npm.io/package/babel-eslint.md) ^11.0.0-beta.0
- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.13.0
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.17.0
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^4.3.0
- [eslint-config-airbnb-base](https://npm.io/package/eslint-config-airbnb-base.md) ^13.1.0

## Recent versions

- 6.0.0 (latest) — 2019-06-07
- 5.1.1 — 2018-09-01
- 5.1.0 — 2018-07-26
- 5.0.0 — 2018-03-19
- 4.1.0 — 2018-01-20
- 4.0.0 — 2017-12-22
- 3.0.6 — 2017-10-14
- 3.0.5 — 2017-09-13
- 3.0.4 — 2017-09-12
- 3.0.3 — 2017-08-11
- 3.0.1 — 2017-08-10
- 3.0.0 — 2017-08-05

## README

# eslint-config-dgeibi

ESLint Config base on `eslint-config-airbnb-base` and `eslint-config-prettier`

## Install

### Common projects

Install `eslint-config-dgeibi` and eslint:

```
$ npm i -D eslint eslint-config-dgeibi
```

If you want to format your source code, just install `prettier`

```
$ npm i -D prettier
```

and create a `.prettierrc`, for example:

```json
{
  "semi": false,
  "singleQuote": true,
  "trailingComma": "es5"
}
```

For common es6 projects, add this to your `.eslintrc`

```json
{
  "extends": ["dgeibi"]
}
```

For node, use `dgeibi/node`

For legacy projects:

```json
{
  "extends": ["dgeibi/legacy"]
}
```

### (p)react projects

The configs are copying from eslint-config-standard-react and eslint-config-standard-preact.

add this to `.eslintrc`

```json
{
  "extends": ["dgeibi/react"]
}
```

extends `dgeibi/preact` instead for preact projects.

## LICENSE

[MIT](LICENSE)

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