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
- Host: GitHub
- URL: https://github.com/adorsys/eslint-config-adorsys
- Owner: adorsys
- License: apache-2.0
- Created: 2017-04-13T14:09:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-19T18:04:06.000Z (over 8 years ago)
- Last Synced: 2025-06-02T00:34:14.968Z (4 months ago)
- Language: JavaScript
- Homepage: https://www.adorsys.de
- Size: 7.81 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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