# eslint-config-jvg

> ESLint rules for personal projects.

Latest version **0.1.3** (published 2018-11-05) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.3 |
| Published | 2018-11-05 |
| First published | 2018-10-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 16.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Joshua Gilless |
| Maintainers | jgilless |
| Keywords | eslint, eslintconfig |

## Links

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

## Dependencies (3)

- [babel-eslint](https://npm.io/package/babel-eslint.md) ^10.0.1
- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.11.1
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^3.1.0

## 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

- 0.1.3 (latest) — 2018-11-05
- 0.1.2 — 2018-10-11
- 0.1.1 — 2018-10-11
- 0.1.0 — 2018-10-11

## README

# eslint-config-jvg

ESLint rules for personal projects.

## Getting Started

```
npm install --save-dev eslint-config-jvg
```

Note: This expects you to have eslint already installed.

Add to your eslint config:

```json
{
    "extends": ["jvg"],
    "rules": {
        // Your rule overrides here
    }
}
```

This already extends `"eslint":"recommended"`, remaining ones are just things that I find annoying and personal opinions.

There's an extra config in here that I did not expose to the default, React! You can add `"jvg/react"` to your `"extends"` array as well to get my react preferences. You could also use it standalone.

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

You can read more here: [https://eslint.org/docs/user-guide/configuring#extending-configuration-files](https://eslint.org/docs/user-guide/configuring#extending-configuration-files)

## Testing

You can validate most things with `npm run test`, however a few things aren't checked. In some rules you have the ability to set a second parameter of an array value for that rule, something like:

```json
"curly": ["error", "<option>"]
```

We will validate the first index, but the option is not currently validated. There are some that are objects, some that are strings, etc.

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