# @rafaeld3v/eslint-config

> ESLint configuration used by @rafaeld3v.

Latest version **3.0.5** (published 2025-01-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install @rafaeld3v/eslint-config
pnpm add @rafaeld3v/eslint-config
yarn add @rafaeld3v/eslint-config
bun add @rafaeld3v/eslint-config
```

## Health

**Score 25/100 (F)** — status: maintenance-mode.

Positive: no vulnerabilities.

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

Negative: stale; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.0.5 |
| Published | 2025-01-08 |
| First published | 2023-06-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 13 |
| Unpacked size | 12.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 1 |
| Maintainers | rafaeld3v |

## Links

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

## Dependencies (13)

- [eslint](https://npm.io/package/eslint.md) ^8.56.0
- [prettier](https://npm.io/package/prettier.md) ^3.2.5
- [eslint-plugin-n](https://npm.io/package/eslint-plugin-n.md) ^16.6.2
- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.33.2
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.29.1
- [eslint-plugin-promise](https://npm.io/package/eslint-plugin-promise.md) ^6.1.1
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^9.1.0
- [eslint-config-standard](https://npm.io/package/eslint-config-standard.md) ^17.1.0
- [eslint-plugin-jsx-a11y](https://npm.io/package/eslint-plugin-jsx-a11y.md) ^6.8.0
- [eslint-plugin-prettier](https://npm.io/package/eslint-plugin-prettier.md) ^5.1.3
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^6.21.0
- [eslint-plugin-react-hooks](https://npm.io/package/eslint-plugin-react-hooks.md) ^4.6.0
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^6.21.0

## Recent versions

- 3.0.5 (latest) — 2025-01-08
- 3.0.3 — 2025-01-08
- 3.0.2 — 2025-01-08
- 3.0.1 — 2025-01-08
- 2.1.1 — 2024-02-14
- 2.1.0 — 2024-02-14
- 2.0.5 — 2024-02-14
- 2.0.4 — 2024-02-14
- 2.0.3 — 2024-02-14
- 2.0.2 — 2024-02-14
- 2.0.1 — 2024-02-14
- 2.0.0 — 2024-02-14
- 3.0.0 — 2024-02-14
- 1.1.0 — 2023-06-15
- 1.0.1 — 2023-06-15
- … 1 more at https://npm.io/package/@rafaeld3v/eslint-config/versions

## README

![rafaeld3v](./logo.svg)

# ESLint config

## What's included? 🔧

- 🔑 Standard config base
- ⚛️ React plugin
- 🪝 React Hooks plugin
- 🧑‍💻 JSX a11y plugin
- 🎨 Prettier

## Setup 🚀

### React Native 📱
Install dependencies:
```
npm i -D eslint @rafaeld3v/eslint-config
```
Inside .eslintrc.json
```
{
  "extends": [
    "@rafaeld3v/eslint-config/react-native", 
  ]
}
```

### React (with Next.js) ⚡️
Install dependencies:
```
npm i -D eslint @rafaeld3v/eslint-config
```
Inside .eslintrc.json
```
{
  "extends": [
    "@rafaeld3v/eslint-config/next", 
    "next/core-web-vitals"
  ]
}
```

### React (without Next.js) ⚛️
Install dependencies:
```
npm i -D eslint @rafaeld3v/eslint-config
```
Inside .eslintrc.json
```
{
  "extends": "@rafaeld3v/eslint-config/react"
}
```

### Node.js 🖧
Install dependencies:
```
npm i -D eslint @rafaeld3v/eslint-config
```
Inside .eslintrc.json
```
{
  "extends": "@rafaeld3v/eslint-config/node"
}
```

## 🎉 License
MIT License © rafaeld3v

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