# @indielayer/eslint-config

> Indielayer ESLint Config

Latest version **3.2.1** (published 2023-11-02) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 3.2.1 |
| Published | 2023-11-02 |
| First published | 2020-08-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 8.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | João Teixeira |
| Maintainers | jpntex |
| Keywords | indielayer, eslint, javascript, typescript, styleguide, eslintconfig |

## Links

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

## Dependencies (3)

- [typescript](https://npm.io/package/typescript.md) ^5.0.0
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^6.9.1
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^6.9.1

## Recent versions

- 3.2.1 (latest) — 2023-11-02
- 3.2.0 — 2023-06-27
- 3.1.1 — 2022-06-30
- 3.1.0 — 2022-05-31
- 3.0.0 — 2022-01-03
- 2.1.0 — 2021-03-15
- 2.0.0 — 2021-03-15
- 1.0.0 — 2020-08-03

## README

<a href="https://indielayer.com/">
  <img src="https://user-images.githubusercontent.com/3942799/147986660-cc494b39-559e-4534-be43-0438d0b11090.png" alt="Indielayer" width="300" />
</a>

> < Tools for creators. />

<br/>

# Indielayer ESLint Config

## Getting Started

Do you want to add the config to your own projects? There you go:

1. Add this package to your devDependencies

```bash
$ npm i -D @indielayer/eslint-config
# or
$ yarn add -D @indielayer/eslint-config
```

2. Install `eslint` if not already present locally or globally

```bash
$ npm i -D eslint
# or
$ yarn add -D eslint
```

3. Create a `.eslintrc` file

4. Extend our config (you can use just the scope name as ESLint will assume the `eslint-config` suffix):

```json
{
  "extends": [
    "@indielayer"
  ]
}
```

## Full example

A full example `.eslintrc`:

```json
{
  "root": true,
  "extends": [
    "@indielayer"
  ]
}
```

## Vue

If you're using Vue, follow [Getting Started](#getting-started) section by replacing `@indielayer/eslint-config` by `@indielayer/eslint-config-vue`.

And in your `.eslintrc` all you need is :

```json
{
  "extends": [
    "@indielayer/eslint-config-vue"
  ]
}
```

## License

[MIT license](https://github.com/indielayer/eslint-config/blob/master/LICENSE) - Indielayer

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