# @takamachi/eslint-config

> ESLint rules for macchiitaka

Latest version **2.9.13** (published 2023-05-06) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities; high maintenance score.

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

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 2.9.13 |
| Published | 2023-05-06 |
| First published | 2021-02-17 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=16 |
| Dependencies | 11 |
| Unpacked size | 39.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | macchiitaka |
| Maintainers | machinaga |
| Keywords | ESLint, Prettier, TypeScript, React, Vue.js |

## Links

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

## Dependencies (11)

- [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.32.2
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.27.5
- [eslint-plugin-unicorn](https://npm.io/package/eslint-plugin-unicorn.md) ^46.0.1
- [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.7.1
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^5.59.2
- [eslint-plugin-react-hooks](https://npm.io/package/eslint-plugin-react-hooks.md) ^4.6.0
- [eslint-plugin-unused-imports](https://npm.io/package/eslint-plugin-unused-imports.md) ^2.0.0
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^5.59.2
- [eslint-plugin-simple-import-sort](https://npm.io/package/eslint-plugin-simple-import-sort.md) ^10.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

- 2.9.13 (latest) — 2023-05-06
- 2.9.12 — 2023-03-18
- 2.9.11 — 2023-01-07
- 2.9.10 — 2023-01-07
- 2.9.9 — 2022-11-22
- 2.9.8 — 2022-11-01
- 2.9.7 — 2022-10-25
- 2.9.6 — 2022-10-08
- 2.9.5 — 2022-09-24
- 2.9.4 — 2022-09-02
- 2.9.3 — 2022-08-26
- 2.9.2 — 2022-07-30
- 2.9.1 — 2022-07-08
- 2.9.0 — 2022-07-05
- 2.8.0 — 2022-07-02
- … 90 more at https://npm.io/package/@takamachi/eslint-config/versions

## README

# @takamachi/eslint-config

[![npm version](https://badge.fury.io/js/%40takamachi%2Feslint-config.svg)](https://badge.fury.io/js/%40takamachi%2Feslint-config)

A ESLint rule set for macchiitaka.

**This package is intended to use in macchiitaka. Currently, this is still in development so the rules might be changed.**

## What is this?

This is a ESLint rule set for macchiitaka.
The purpose of `@takamachi/eslint-config` are following

- Share best practices for JavaScript
- Standardize JavaScript coding guideline in macchiitaka
- Installation support for ESLint and continuous support for the rule set

## The benefits to adapt this rule

You don't need to care about updates for ESLint and ESLint plugins.
We'll manage the updates and provide CHANGELOG that you need to know so that you can update it easily.
In addition, we'll add some useful plugins into `@takamachi/eslint-config` so you can learn about best practices for JavaScript through `@takamachi/eslint-config`.

## Rule set policies

We provide rules that are Error or Warning.

### Error

This is a rule you must fix because the code might not follow our practices in JavaScript

### Warning

This is a rule you should fix because the code style might not be preferable.

## Version policy

1.  We update major version if the changes might cause new errors.
1.  We update minor version if the changes might cause new warnings.
1.  We update patch version if the changes don't cause any new errors and warings.

## How to use

Install `eslint` and `@takamachi/eslint-config` and put it into your `.eslintrc.js`

```bash
$ npm install --save-dev eslint @takamachi/eslint-config
```

- `.eslintrc.js`

```js
module.exports = {
  extends: '@takamachi',
};
```

**Currently, we adopt that `indent` rule is 2 spaces and having indentation in `switch case`.
You can override the rule if your project adopts 4 spaces or others.
We think it's important to have consistency in your entire codebase.**

```js
module.exports = {
  extends: '@takamachi',
  rules: {
    // default
    // 'indent': ['warn', 2, { "SwitchCase": 1 }],
    indent: ['warn', 4, { SwitchCase: 0 }],
  },
};
```

## Support rule set

- `@takamachi`
  - Including
    - `eslint`
    - `eslint-plugin-unicorn`
    - `eslint-plugin-import`
    - `eslint-plugin-simple-import-sort`
- `@takamachi/eslint-config/presets/typescript`
  - Including
    - `@takamachi`
    - `@typescript-eslint/eslint-plugin`
- `@takamachi/eslint-config/presets/react`
  - Including
    - `@takamachi`
    - `eslint-plugin-react`
    - `eslint-plugin-jsx-ally`
    - `eslint-plugin-react-hooks`
  - ⚠️ A11y rules are being defined as warnings, which is an experimental, so we might change the rules in later
- `@takamachi/eslint-config/presets/react-typescript`
  - Including
    - `@takamachi/eslint-config/presets/react`
    - `@takamachi/eslint-config/presets/typescript`
- `@takamachi/eslint-config/presets/node`
  - Including
    - `@takamachi`
    - `eslint-plugin-node`
- `@takamachi/eslint-config/presets/none-typescript`
  - Including
    - `@takamachi/eslint-config/presets/none`
    - `@takamachi/eslint-config/presets/typescript`

## TypeScript Support

Please set `parserOptions.project` in `.eslintrc.js`. This option allows you to provide a path to your project's tsconfig.json. **This setting is required if you want to use rules which require type information.**

```js
module.exports = {
  parserOptions: {
    project: './tsconfig.json',
  },
};
```

## Prettier Support

Prettier is a code formatter, which supports not only JavaScript but also other languages.
Prettier is used widely for a code formatter for JavaScript.

It's an opinionated tool but with Prettier, we don't have to discuss code styles in code review.
(No more bikeshed)

The presets disable all rules conflicting with Prettier and treat the difference as errors.
You can fix the errors by `--fix` option, so you don't have to fix the errors manually.

In order to this, you have to install `prettier` and choose a preset from the followings.

```bash
$ npm install --save-dev prettier
```

- `@takamachi/eslint-config/presets/prettier`
- `@takamachi/eslint-config/presets/typescript-prettier`
- `@takamachi/eslint-config/presets/react-prettier`
- `@takamachi/eslint-config/presets/react-typescript-prettier`
- `@takamachi/eslint-config/presets/node-prettier`
- `@takamachi/eslint-config/presets/node-typescript-prettier`

**Currently, we don't support customized Prettier config**

## Recommended plugins

- [amilajack/eslint-plugin-compat: Lint the browser compatibility of your code](https://github.com/amilajack/eslint-plugin-compat)
- [jest-community/eslint-plugin-jest: ESLint plugin for Jest](https://github.com/jest-community/eslint-plugin-jest)
- [testing-library/eslint-plugin-jest-dom: eslint rules for use with jest-dom](https://github.com/testing-library/eslint-plugin-jest-dom)
- [testing-library/eslint-plugin-testing-library: ESLint plugin to follow best practices and anticipate common mistakes when writing tests with Testing Library](https://github.com/testing-library/eslint-plugin-testing-library)

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