# eslint-config-dguryev

> JavaScript style guide by Dmitry Guryev

Latest version **1.0.1** (published 2017-02-02) · MIT license · 0 weekly downloads

## Install

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

## 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 | 2017-02-02 |
| First published | 2017-02-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Dmitry Guryev |
| Maintainers | dguryev |
| Keywords | es2015, eslint, lint, style guide |

## Links

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

## 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) — 2017-02-02
- 1.0.0 — 2017-02-02

## README

# ESLint Config by Dmitry Guryev

Install ESLint and config:

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

Create `.eslintrc` in your project containing:

```json
{
  "extends": "dguryev"
}
```

Append project-specific `env` and `globals` params:

```json
{
  "extends": "dguryev",
  "env": {
    "jquery": true,
    "jasmine": true
  },
  "globals": {
    "angular": false,
    "moment": false
  }
}
```

That's it!

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