An open API service indexing awesome lists of open source software.

https://github.com/adorsys/eslint-config-adorsys

Adorsys eslint config
https://github.com/adorsys/eslint-config-adorsys

Last synced: 3 months ago
JSON representation

Adorsys eslint config

Awesome Lists containing this project

README

          

# eslint-config-adorsys

Extends rules from [airbnb-base](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb-base)
As specified in the [official Airbnb Javascript Styleguide](https://github.com/airbnb/javascript)

## Setup

npm install from this repo

```bash
npm i -D eslint git+ssh://git@git.adorsys.de:wow/eslint-config.git
```

Add .eslintrc file with following content

```bash
{
"extends": "eslint-config-adorsys"
}

```

Add lint script task to package.json

```bash
"scripts": {
"lint": "eslint ."
...
}
```

Run ```npm run lint``` from command line