Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avraammavridis/eslint-config-avraam
Eslint rules I use across of my projects
https://github.com/avraammavridis/eslint-config-avraam
eslint linting
Last synced: 6 days ago
JSON representation
Eslint rules I use across of my projects
- Host: GitHub
- URL: https://github.com/avraammavridis/eslint-config-avraam
- Owner: AvraamMavridis
- License: mit
- Created: 2018-08-01T07:03:25.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-06T14:30:31.000Z (over 6 years ago)
- Last Synced: 2024-10-11T06:29:58.080Z (28 days ago)
- Topics: eslint, linting
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-avraam
## To install
1. Install shared config `npm install --save-dev eslint-config-avraam`.
2. Install peerDependencies```bash
(
export PKG=eslint-config-avraam;
npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG@latest"
)
```1. Create a `.eslintrc.js` file and make sure that it contains the following:
```bash
module.exports = {
"extends": "avraam",
"rules": {
"require-jsdoc": "warn"
}
}
```