# @icebreakers/eslint-config-ts

> icebreaker's typescript eslint-config

Latest version **1.2.3** (published 2023-12-15) · ISC license · 0 weekly downloads

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

## Install

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

## Health

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

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 1.2.3 |
| Published | 2023-12-15 |
| First published | 2022-11-02 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 4 |
| Unpacked size | 3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 9 |
| Author | SonOfMagic |
| Maintainers | icebreaker |

## Links

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

## Dependencies (4)

- [@types/jest](https://npm.io/package/@types/jest.md) ^29.5.11
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^6.14.0
- [@icebreakers/eslint-config-basic](https://npm.io/package/@icebreakers/eslint-config-basic.md) 1.2.3
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^6.14.0

## Recent versions

- 1.2.3 (latest) — 2023-12-15
- 1.2.2 — 2023-07-26
- 1.2.1 — 2023-07-21
- 1.2.0 — 2023-07-21
- 1.1.0 — 2023-05-21
- 1.0.4 — 2023-03-06
- 1.0.3 — 2023-03-06
- 1.0.2 — 2022-11-03
- 1.0.1 — 2022-11-03
- 1.0.0 — 2022-11-02

## README

# sonofmagic/eslint-config

- [sonofmagic/eslint-config](#sonofmagiceslint-config)
  - [Install](#install)
    - [.editorconfig](#editorconfig)
    - [.prettierrc](#prettierrc)
    - [.eslintrc.js](#eslintrcjs)
  - [@icebreakers/eslint-config-basic](#icebreakerseslint-config-basic)
  - [@icebreakers/eslint-config-ts](#icebreakerseslint-config-ts)

## Install

```shell
npm i -D eslint prettier @icebreakers/eslint-config-ts
```

### .editorconfig

```text
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
```

### .prettierrc

```json
{
    "tabWidth": 2,
    "useTabs": false,
    "semi": false,
    "singleQuote": true,
    "endOfLine": "lf",
    "trailingComma": "none",
    "printWidth": 180,
    "bracketSameLine": true,
    "htmlWhitespaceSensitivity": "ignore"
}
```

### .eslintrc.js

```js
module.exports = {
  extends: ['@icebreakers/eslint-config-ts']
}
```

## @icebreakers/eslint-config-basic

```json
{
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-standard": "^17.0.0",
    "eslint-plugin-import": "2.26.0",
    "eslint-plugin-jest": "^27.1.3",
    "eslint-plugin-n": "^15.3.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-promise": "6.1.1"
}

```

## @icebreakers/eslint-config-ts

extends basic and add `@typescript-eslint/parser` and `@typescript-eslint/eslint-plugin`

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