# eslint-config-wombat

> Recommended Common Wombat config for eslint

Latest version **5.0.0** (published 2021-05-17) · MIT license · 0 weekly downloads

## Install

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

## 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 | 5.0.0 |
| Published | 2021-05-17 |
| First published | 2020-08-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 12 |
| Unpacked size | 5 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Common Wombat |
| Maintainers | commonwombat-user, ulanaxy |
| Keywords | eselint, eslint-config, recommended |

## Links

- npm: https://www.npmjs.com/package/eslint-config-wombat
- Repository: https://gitlab.com/CommonWombat/public-projects/cw-eslintConfig-config
- npm.io page: https://npm.io/package/eslint-config-wombat

## Dependencies (12)

- [eslint-loader](https://npm.io/package/eslint-loader.md) ^4.0.2
- [eslint-plugin-react](https://npm.io/package/eslint-plugin-react.md) ^7.21.5
- [eslint-config-airbnb](https://npm.io/package/eslint-config-airbnb.md) ^18.1.0
- [eslint-plugin-import](https://npm.io/package/eslint-plugin-import.md) ^2.22.0
- [eslint-plugin-flowtype](https://npm.io/package/eslint-plugin-flowtype.md) ^5.2.0
- [eslint-plugin-jsx-a11y](https://npm.io/package/eslint-plugin-jsx-a11y.md) ^6.3.1
- [eslint-config-react-app](https://npm.io/package/eslint-config-react-app.md) ^6.0.0
- [@typescript-eslint/parser](https://npm.io/package/@typescript-eslint/parser.md) ^4.0.0
- [eslint-plugin-react-hooks](https://npm.io/package/eslint-plugin-react-hooks.md) ^4.0.8
- [eslint-import-resolver-alias](https://npm.io/package/eslint-import-resolver-alias.md) ^1.1.2
- [eslint-config-airbnb-typescript](https://npm.io/package/eslint-config-airbnb-typescript.md) ^12.0.0
- [@typescript-eslint/eslint-plugin](https://npm.io/package/@typescript-eslint/eslint-plugin.md) ^4.0.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

- 5.0.0 (latest) — 2021-05-17
- 4.2.0 — 2021-02-18
- 4.1.0 — 2021-02-04
- 4.0.1 — 2020-11-18
- 4.0.0 — 2020-11-18
- 3.0.2 — 2020-11-17
- 3.0.1 — 2020-11-17
- 3.0.0 — 2020-11-17
- 2.14.9 — 2020-08-13
- 2.14.8 — 2020-08-11
- 2.14.7 — 2020-08-11
- 2.14.6 — 2020-08-05
- 2.14.5 — 2020-08-05

## README

eslint-config-wombat
================

## Installation
1. Installation

    TypeScript only 
    ```bash
    yarn add -D babel-eslint@~10.1.0 eslint@^7.5.0 eslint-config-wombat
    ```
    
    JavaScript
    ```bash
    yarn add -D babel-eslint@~10.1.0 eslint@^7.5.0 eslint-config-wombat
    ```
    
2. create/update .eslintrc.js
    * javascript:
    ```js
    module.exports = {
      "extends": [
        "wombat"
      ],
      "ignorePatterns": [
      ]
    };

    ```
    * typescript:
    ```js
    module.exports = {
      "extends": [
        "wombat/typescript"
      ],
      "parserOptions": {
        project: ['./tsconfig.json'],
        tsconfigRootDir: __dirname,
      },
      "ignorePatterns": [
      ]
    };
    ```
3. Add script to package.json 
    ```js
    "scripts": {
      ...
      "lint:js": "eslint ./src --ext .js,.jsx,.ts,.tsx --max-warnings=0",
    }  
    ```
   
## Publishing
1. Be repo Maintainer.
2. Merging branch develop to master via Merge Request.
3. Switch locally to master branch
4. run `yarn run createNewVersion`
5. Select new version
6. after publication is completed make sure that everything is pushed to gitlab
7. merge master to develop(without creating Merge Request)
8. done

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