https://github.com/evernote/eslint-config-evernote
eslint config rules for Evernote projects.
https://github.com/evernote/eslint-config-evernote
Last synced: 6 months ago
JSON representation
eslint config rules for Evernote projects.
- Host: GitHub
- URL: https://github.com/evernote/eslint-config-evernote
- Owner: Evernote
- License: other
- Created: 2016-02-22T21:52:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-06-02T17:29:36.000Z (over 2 years ago)
- Last Synced: 2025-04-05T22:42:38.406Z (6 months ago)
- Language: JavaScript
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 29
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Evernote eslint configuration #
This package contains the eslint configuration used for projects at Evernote.
## Requirements ##
- [eslint](https://eslint.org) `^2.8.0 || ^3.1.1 || ^4.2.0 || ^5.6.0`
- [eslint-plugin-evernote](https://github.com/evernote/eslint-plugin-evernote) `^1.0.0`
- [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import) `^2.2.0`
- [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) `^7.0.0`## Instructions ##
```bash
npm i --save-dev \ # or yarn add -D \
eslint@5.x \
eslint-plugin-evernote@1.x \
eslint-plugin-react@7.x \
eslint-plugin-import@2.x \
eslint-config-evernote
```In your `.eslintrc`, add
```json
"extends": "eslint-config-evernote"
```Additional rules or overrides can be defined in your `.eslintrc` as usual.