Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/papermana/eslint-config-personal
Just my basic ESLint config
https://github.com/papermana/eslint-config-personal
Last synced: 15 days ago
JSON representation
Just my basic ESLint config
- Host: GitHub
- URL: https://github.com/papermana/eslint-config-personal
- Owner: papermana
- License: mit
- Created: 2016-07-04T19:41:36.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-21T17:56:13.000Z (about 8 years ago)
- Last Synced: 2024-11-07T02:18:45.038Z (2 months ago)
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-config-personal
Just my personal ESLint config.## Is it up to date?
The rules were last revised for versions:
* `eslint` 3.3.1
* `eslint-plugin-react` 6.1.2
* `eslint-plugin-react-native` 2.0.0## Usage
1. Save this config, as well as the ESLint package:
```
npm i --save-dev eslint @papermana/eslint-config-personal
```2. Save any plugins you might need (optional):
```
npm i --save-dev eslint-plugin-react eslint-plugin-react-native
```3. In the project's ESLint configuration add the imported config(s) to the `extend` property:
```
"extends": "@papermana/eslint-config-personal"
```
```
"extends": [
"@papermana/eslint-config-personal",
"@papermana/eslint-config-personal/react"
],
```