# @xeraph-dev/eslint-config

> An opinionated eslint config

Latest version **0.0.4** (published 2023-09-17) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.4 |
| Published | 2023-09-17 |
| First published | 2023-08-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 14 |
| Unpacked size | 5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Xeraph |
| Maintainers | xeraph-dev |

## Links

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

## Dependencies (14)

- [eslint](https://npm.io/package/eslint.md) ^8.49.0
- [eslint-plugin-n](https://npm.io/package/eslint-plugin-n.md) ^16.1.0
- [eslint-plugin-astro](https://npm.io/package/eslint-plugin-astro.md) ^0.29.0
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.28.1
- [eslint-plugin-promise](https://npm.io/package/eslint-plugin-promise.md) ^6.1.1
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^9.0.0
- [eslint-plugin-prettier](https://npm.io/package/eslint-plugin-prettier.md) ^5.0.0
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^6.7.0
- [eslint-plugin-unused-imports](https://npm.io/package/eslint-plugin-unused-imports.md) ^3.0.0
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^6.7.0
- [eslint-plugin-simple-import-sort](https://npm.io/package/eslint-plugin-simple-import-sort.md) ^10.0.0
- [eslint-plugin-typescript-sort-keys](https://npm.io/package/eslint-plugin-typescript-sort-keys.md) ^3.0.0
- [eslint-plugin-sort-destructure-keys](https://npm.io/package/eslint-plugin-sort-destructure-keys.md) ^1.5.0
- [eslint-config-standard-with-typescript](https://npm.io/package/eslint-config-standard-with-typescript.md) ^39.0.0

## Recent versions

- 0.0.4 (latest) — 2023-09-17
- 0.0.3 — 2023-09-17
- 0.0.2 — 2023-08-16
- 0.0.1 — 2023-08-14

## README

# @xeraph-dev/eslint-config

## Installation

_No need to install the *eslint* package_

```shell
npm install --save-dev prettier @xeraph-dev/eslint-config
```

or if prefer to use [@xeraph-dev/prettier-config](https://www.npmjs.com/package/@xeraph-dev/prettier-config)

```shell
npm install --save-dev @xeraph-dev/prettier-config @xeraph-dev/eslint-config
```

### To lint typescript files

```shell
npm install --save-dev typescript
```

### To lint astro files

```shell
npm install --save-dev astro
```

## Configuration

### Extend via _package.json_

```json
{
  // ...
  "eslintConfig": {
    "extends": "@xeraph-dev"
  }
  // ...
}
```

### Extend via _.eslintrc.cjs_

```javascript
/** @type {import('eslint').Linter.Config} */
module.exports = {
  extends: ['@xeraph-dev'],
}
```

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