# @kodansha/eslint-config

> Set of KODANSHA ESLint Configurations

Latest version **0.1.6** (published 2022-08-12) · MIT license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

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

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.1.6 |
| Published | 2022-08-12 |
| First published | 2020-06-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Unpacked size | 5.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 4 |
| Author | KODANSHAtech LLC. |
| Maintainers | 5t111111, y-nagao |
| Keywords | eslint, eslintconfig |

## Links

- npm: https://www.npmjs.com/package/@kodansha/eslint-config
- Repository: https://github.com/kodansha/eslint-config
- Issues: https://github.com/kodansha/eslint-config/issues
- npm.io page: https://npm.io/package/@kodansha/eslint-config

## Dependencies (5)

- [eslint-plugin-node](https://npm.io/package/eslint-plugin-node.md) ^11.1.0
- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.30.1
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^8.5.0
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^5.33.0
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^5.33.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.6 (latest) — 2022-08-12
- 0.1.5 — 2022-08-12
- 0.1.4 — 2022-08-12
- 0.1.3 — 2021-07-08
- 0.1.2 — 2021-05-11
- 0.1.1 — 2021-05-11
- 0.1.0 — 2021-01-25
- 0.0.13 — 2020-09-02
- 0.0.12 — 2020-08-27
- 0.0.11 — 2020-07-20
- 0.0.10 — 2020-06-27
- 0.0.9 — 2020-06-27
- 0.0.8 — 2020-06-27
- 0.0.7 — 2020-06-27
- 0.0.6 — 2020-06-27
- … 5 more at https://npm.io/package/@kodansha/eslint-config/versions

## README

# @kodansha/eslint-config

A set of KODANSHA ESLint configuration for TypeScript projects.

It is recommended to use this along with [@kodansha/prettier-config](https://github.com/kodansha/prettier-config).

## Installation

```
npm install -D typescript eslint @kodansha/eslint-config
```

or

```
yarn add -D typescript eslint @kodansha/eslint-config
```

## Usage

### Defaults

To use the defaults preset, put `.eslintrc.js` in your project's root directory:

```js
module.exports = {
  extends: ["@kodansha"],
  root: true,
};
```

### Next.js

To use the preset for Next.js, put `.eslintrc.js` in your project's root directory:

```js
module.exports = {
  extends: ["@kodansha/eslint-config/presets/next"],
  root: true,
};
```

### React.js

To use the preset for React.js, put `.eslintrc.js` in your project's root directory:

```js
module.exports = {
  extends: ["@kodansha/eslint-config/presets/react"],
  root: true,
};
```

### Node.js

To use the preset for Node.js, put `.eslintrc.js` in your project's root directory:

```js
module.exports = {
  extends: ["@kodansha/eslint-config/presets/node"],
  root: true,
};
```

### Nest.js

To use the preset for Nest.js, put `.eslintrc.js` in your project's root directory:

```js
module.exports = {
  extends: ["@kodansha/eslint-config/presets/nest"],
  root: true,
};
```

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