# eslint-config-xo-typescript

> ESLint shareable config for TypeScript to be used with eslint-config-xo

Latest version **11.0.0** (published 2026-03-25) · MIT license · 0 weekly downloads

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

## Install

```sh
npm install eslint-config-xo-typescript
pnpm add eslint-config-xo-typescript
yarn add eslint-config-xo-typescript
bun add eslint-config-xo-typescript
```

## Health

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

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 11.0.0 |
| Published | 2026-03-25 |
| First published | 2018-05-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Node | >=20.19 |
| Dependencies | 3 |
| Unpacked size | 25 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 177 |
| Author | Sindre Sorhus |
| Maintainers | sindresorhus |
| Keywords | typescript, eslintconfig, xo, code, quality, style, lint, linter, jscs, jshint, jslint, eslint, validate, standard, strict, check, checker, verify, enforce, hint, simple |

## Links

- npm: https://www.npmjs.com/package/eslint-config-xo-typescript
- Repository: https://github.com/xojs/eslint-config-xo-typescript
- Homepage: https://github.com/xojs/eslint-config-xo-typescript#readme
- Issues: https://github.com/xojs/eslint-config-xo-typescript/issues
- Funding: https://github.com/sponsors/sindresorhus
- npm.io page: https://npm.io/package/eslint-config-xo-typescript

## Dependencies (3)

- [eslint-config-xo](https://npm.io/package/eslint-config-xo.md) ^0.50.0
- [typescript-eslint](https://npm.io/package/typescript-eslint.md) ^8.57.0
- [@stylistic/eslint-plugin](https://npm.io/package/@stylistic/eslint-plugin.md) ^5.10.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

- 11.0.0 (latest) — 2026-03-25
- 10.0.0 — 2026-03-14
- 9.0.0 — 2025-08-19
- 8.0.2 — 2025-08-06
- 8.0.1 — 2025-05-08
- 8.0.0 — 2025-04-24
- 7.0.0 — 2024-09-22
- 6.0.0 — 2024-08-03
- 5.0.0 — 2024-07-18
- 4.0.0 — 2024-03-08
- 3.0.0 — 2024-02-23
- 2.1.1 — 2024-02-23
- 2.1.0 — 2024-02-23
- 2.0.0 — 2024-02-06
- 1.0.1 — 2023-07-18
- … 71 more at https://npm.io/package/eslint-config-xo-typescript/versions

## README

# eslint-config-xo-typescript

> ESLint [shareable config](https://eslint.org/docs/developer-guide/shareable-configs.html) for TypeScript

> [!IMPORTANT]
> This config has been merged into [`eslint-config-xo`](https://github.com/xojs/eslint-config-xo).

## Install

```sh
npm install --save-dev eslint-config-xo-typescript
```

## Use with XO

[XO has built-in support for TypeScript](https://github.com/xojs/xo#typescript), using this package under the hood, so you do not have to configure anything.

## Standalone Usage

Add some ESLint config to your package.json (or `.eslintrc`):

```js
// eslint.config.js
import xoTypeScript from 'eslint-config-xo-typescript';

export default [
	...xoTypeScript,
];
```

Use the `space` sub-config if you want 2 space indentation instead of tabs:

```js
import xoTypeScriptSpace from 'eslint-config-xo-typescript/space';

export default [
	...xoTypeScriptSpace,
];
```

## Related

- [XO](https://github.com/xojs/xo)

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