# @qimpl/eslint-config

> Qimpl shared eslint configuration

Latest version **1.4.2** (published 2022-12-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @qimpl/eslint-config
pnpm add @qimpl/eslint-config
yarn add @qimpl/eslint-config
bun add @qimpl/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.4.2 |
| Published | 2022-12-07 |
| First published | 2020-12-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 7.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Jérôme Pogeant |
| Maintainers | jerome1337, thyrael |
| Keywords | javascript, config, react, eslint, prettier, lint |

## Links

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

## Dependencies (1)

- [eslint-plugin-svelte3](https://npm.io/package/eslint-plugin-svelte3.md) >=3.0.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

- 1.4.2 (latest) — 2022-12-07
- 1.4.1 — 2021-05-25
- 1.3.8 — 2021-03-07
- 1.3.7 — 2021-02-26
- 1.3.6 — 2021-02-12
- 1.3.5 — 2021-02-07
- 1.3.4 — 2021-02-05
- 1.3.3 — 2021-02-01
- 1.3.2 — 2021-02-01
- 1.3.1 — 2021-02-01
- 1.3.0 — 2021-02-01
- 1.2.0 — 2021-01-29
- 1.1.0 — 2021-01-29
- 1.0.2 — 2020-12-07
- 1.0.1 — 2020-12-04
- … 1 more at https://npm.io/package/@qimpl/eslint-config/versions

## README

# Qimpl Eslint/Prettier config

Qimpl shared eslint configuration

[![NPM](https://img.shields.io/npm/v/@qimpl/eslint-config.svg)](https://www.npmjs.com/package/@qimpl/eslint-config)

## Usage

```
npx install-peerdeps --dev @qimpl/eslint-config
```

### React

There is the `.eslintrc.js` config for React/React Native projects:

```js
module.exports = {
  extends: '@qimpl/eslint-config/react',
};
```

#### With TypeScript:

> Don't forget to add the parserOptions into your project Eslint config

```js
module.exports = {
  extends: '@qimpl/eslint-config/react-typescript',
  parserOptions: {
    project: './tsconfig.json',
  },
};
```

### Svelte

There is the `.eslintrc.js` config for Svelte projects:

```js
module.exports = {
  extends: '@qimpl/eslint-config/svelte',
};
```

## VS Code config

Once you have done. You probably want your editor to lint and fix for you.

1. Install the [ESLint package](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint)
2. Now we need to setup some VS Code settings via `Code/File` → `Preferences` → `Settings`. Click to the `{}` icon in the top right corner and add this :

```json
{
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  }
}
```

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