# @junghyeonsu/eslint-config-typescript

> typescript에 대한 eslint 설정들이 들어있어요.

Latest version **1.0.2** (published 2022-12-10) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2022-12-10 |
| First published | 2022-12-04 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 3 |
| Unpacked size | 6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 8 |
| Author | Hyeonsu Jung |
| Maintainers | junghyeonsu |

## Links

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

## Dependencies (3)

- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^5.45.0
- [eslint-config-airbnb-typescript](https://npm.io/package/eslint-config-airbnb-typescript.md) ^17.0.0
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^5.45.0

## Recent versions

- 1.0.2 (latest) — 2022-12-10
- 1.0.1 — 2022-12-10
- 1.0.0 — 2022-12-10
- 0.0.1 — 2022-12-04

## README

# @junghyeonsu/eslint-config-typescript

### info

```json
{
  "dependencies": {
    "@typescript-eslint/eslint-plugin": "^5.45.0",
    "@typescript-eslint/parser": "^5.45.0",
    "eslint-config-airbnb-typescript": "^17.0.0"
  }
}
```

### install

```console
$ yarn add @junghyeonsu/eslint-config-typescript -D
$ npm install --dev @junghyeonsu/eslint-config-typescript
```

### settings

- `.eslintrc.js`

```js
module.exports = {
  // base package랑 같이 써야 돼요.
  extends: ["@junghyeonsu/eslint-config-base", "@junghyeonsu/eslint-config-typescript"],
  parserOptions: {
    project: "./tsconfig.json", // tsconfig가 필요해요.
  },
};

// or

module.exports = {
  extends: ["@junghyeonsu/base, @junghyeonsu/typescript"],
  parserOptions: {
    project: "./tsconfig.json", // tsconfig가 필요해요.
  },
};
```

- `.vscode/settings.json` (만약 프로젝트에 vscode 설정을 통일시키고 싶다면...)

```json
{
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  },
  "eslint.validate": ["javascript", "typescript", "json"]
}
```

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