# @jumbotail/eslint-config

> `npm i --save-dev @jumbotail/eslint-config` OR `yarn add -D @jumbotail/eslint-config`

Latest version **1.0.7** (published 2023-06-26) · 0 weekly downloads

## Install

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

## 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.7 |
| Published | 2023-06-26 |
| First published | 2023-06-25 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 8 |
| Unpacked size | 2.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | kamleshtilwani |

## Links

- npm: https://www.npmjs.com/package/@jumbotail/eslint-config
- npm.io page: https://npm.io/package/@jumbotail/eslint-config

## Dependencies (8)

- [eslint](https://npm.io/package/eslint.md) ^8.2.0
- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.28.0
- [eslint-config-airbnb](https://npm.io/package/eslint-config-airbnb.md) 19.0.4
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.25.3
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^8.8.0
- [eslint-plugin-jsx-a11y](https://npm.io/package/eslint-plugin-jsx-a11y.md) ^6.5.1
- [eslint-plugin-prettier](https://npm.io/package/eslint-plugin-prettier.md) ^4.2.1
- [eslint-plugin-react-hooks](https://npm.io/package/eslint-plugin-react-hooks.md) ^4.3.0

## Recent versions

- 1.0.7 (latest) — 2023-06-26
- 1.0.6 — 2023-06-26
- 1.0.5 — 2023-06-26
- 1.0.4 — 2023-06-26
- 1.0.3 — 2023-06-25
- 1.0.2 — 2023-06-25
- 1.0.1 — 2023-06-25
- 1.0.0 — 2023-06-25

## README

## Installation

`npm i --save-dev @jumbotail/eslint-config` 
OR 
`yarn add -D @jumbotail/eslint-config`

## Configuration
After installation, create a `.eslintrc.js` (OR `.eslintrc.cjs` ) file and add this:

```
module.exports = {
  extends: [
    '@jumbotail/eslint-config',
  ],
  parserOptions: {
    project: [<path to tsconfig.json file in quotes>]
  },
}
```

You can add other config and plugins.

## Overriding rules
Sometimes in our feature project, we might need to add/override some rules. e.g: in this library, the `no-console` will give a warning. If we want to override in our project, by adding this in `.eslintrc.js` file.

```
rules: {
    'no-console':"error",
}
```

## Credits
A big thanks to all the open sourced eslint configs and plugins that we are using. Please support them 🚀

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