# eslint-config-ixn-next

> Ixion Labs' ESLint config for NextJS projects

Latest version **1.5.3** (published 2023-10-13) · MIT license · 0 weekly downloads

## Install

```sh
npm install eslint-config-ixn-next
pnpm add eslint-config-ixn-next
yarn add eslint-config-ixn-next
bun add eslint-config-ixn-next
```

## 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.5.3 |
| Published | 2023-10-13 |
| First published | 2023-02-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 11 |
| Unpacked size | 5.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | James |
| Maintainers | elicx |

## Links

- npm: https://www.npmjs.com/package/eslint-config-ixn-next
- Repository: https://github.com/ixion-labs/eslint-config-ixn
- Homepage: https://github.com/ixion-labs/eslint-config-ixn#readme
- Issues: https://github.com/ixion-labs/eslint-config-ixn/issues
- npm.io page: https://npm.io/package/eslint-config-ixn-next

## Dependencies (11)

- [eslint-config-next](https://npm.io/package/eslint-config-next.md) 13.4.8
- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.31.7
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.26.0
- [eslint-config-prettier](https://npm.io/package/eslint-config-prettier.md) ^8.6.0
- [eslint-plugin-jsx-a11y](https://npm.io/package/eslint-plugin-jsx-a11y.md) ^6.5.1
- [eslint-config-ixn-react](https://npm.io/package/eslint-config-ixn-react.md) ^1.5.3
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^5.59.0
- [eslint-plugin-react-hooks](https://npm.io/package/eslint-plugin-react-hooks.md) ^4.5.0
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^5.59.0
- [eslint-plugin-simple-import-sort](https://npm.io/package/eslint-plugin-simple-import-sort.md) ^10.0.0
- [eslint-import-resolver-typescript](https://npm.io/package/eslint-import-resolver-typescript.md) ^3.5.2

## Recent versions

- 1.5.3 (latest) — 2023-10-13
- 1.5.2 — 2023-10-13
- 1.5.1 — 2023-10-13
- 1.4.5 — 2023-07-28
- 1.4.4 — 2023-07-28
- 1.4.3 — 2023-07-28
- 1.4.2 — 2023-04-18
- 1.3.1 — 2023-02-08
- 1.3.0 — 2023-02-07
- 1.2.7 — 2023-02-07
- 1.2.4 — 2023-02-07
- 1.2.3 — 2023-02-07
- 1.2.1 — 2023-02-07
- 1.1.0 — 2023-02-07
- 1.0.1 — 2023-02-07

## README

# eslint-config-ixn-next

Ixion Labs' ESLint config for NextJS projects

## Usage

### NextJS

```bash
npm install --save-dev eslint-config-ixn-next
```

```json
{
  "parserOptions": {
    "project": "./tsconfig.json"
  },
  "extends": "ixn-next"
}
```

If NextJS is not the root of the project, you can specify the root directory of the NextJS project in the `settings.next.rootDir` array.

```json
{
  "settings": {
    "next": {
      "rootDir": ["./packages/next"]
    }
  }
}
```

If you are using this config for a library with no pages repository, you may receive a warning about no Pages directory being found. In that case, set the following rule to `off`:

```json
{
  "rules": {
    "@next/next/no-html-link-for-pages": "off"
  }
}
```

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