# eslint-config-agata

> Eslint config for Agata projects

Latest version **0.4.0** (published 2022-01-26) · ISC license · 0 weekly downloads

## Install

```sh
npm install eslint-config-agata
pnpm add eslint-config-agata
yarn add eslint-config-agata
bun add eslint-config-agata
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.4.0 |
| Published | 2022-01-26 |
| First published | 2019-08-26 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Unpacked size | 12.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Aleksandr Marenin |
| Maintainers | ioncreature |
| Keywords | agata, eslint-config |

## Links

- npm: https://www.npmjs.com/package/eslint-config-agata
- Repository: https://github.com/ioncreature/eslint-config-agata
- Homepage: https://github.com/ioncreature/eslint-config-agata#readme
- Issues: https://github.com/ioncreature/eslint-config-agata/issues
- npm.io page: https://npm.io/package/eslint-config-agata

## Dependencies (3)

- [babel-eslint](https://npm.io/package/babel-eslint.md) 10.1.0
- [eslint-plugin-node](https://npm.io/package/eslint-plugin-node.md) 11.1.0
- [eslint-plugin-sonarjs](https://npm.io/package/eslint-plugin-sonarjs.md) 0.11.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

- 0.4.0 (latest) — 2022-01-26
- 0.3.2 — 2022-01-26
- 0.3.1 — 2022-01-24
- 0.3.0 — 2022-01-24
- 0.2.1 — 2020-10-10
- 0.2.0 — 2020-10-10
- 0.1.6 — 2020-07-22
- 0.1.5 — 2020-05-24
- 0.1.4 — 2020-05-24
- 0.1.3 — 2020-05-24
- 0.1.2 — 2019-08-26
- 0.1.1 — 2019-08-26
- 0.1.0 — 2019-08-26

## README

# eslint-config-agata

ESLint config for Agata projects


### How to use

1. Put `eslint-config-agata` to your `package.json` file to `devDependencies` section
2. Run `npm install`
3. Add file .eslintrc.js to root folder(and to ./test folder if exists) of your repository
    1. For `node` projects
    ```javascript
        module.exports = {
            extends: 'agata',
            env: {
                node: true
            }
        };
    ```
    2. For frontend projects
    ```javascript
        module.exports = {
            extends: 'agata',
            env: {
                browser: true
            }
        };
    ```
    3. For `./test` folder
        ```javascript
            module.exports = {
                extends: 'agata',
                env: {
                    node: true,
                    mocha: true // or any other test framework you use
                }
            };
        ```
4. Run `eslint <folder or file name>`
5. Enjoy (or suffer)

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