Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/timkurvers/eslint-config
My ESLint config
https://github.com/timkurvers/eslint-config
Last synced: 6 days ago
JSON representation
My ESLint config
- Host: GitHub
- URL: https://github.com/timkurvers/eslint-config
- Owner: timkurvers
- License: mit
- Created: 2015-09-12T13:01:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2022-11-30T08:39:57.000Z (almost 2 years ago)
- Last Synced: 2024-04-26T17:23:19.014Z (7 months ago)
- Language: JavaScript
- Size: 238 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# eslint-config
[![Version](https://badgen.net/npm/v/@timkurvers/eslint-config)](https://www.npmjs.org/package/@timkurvers/eslint-config)
[![MIT License](https://badgen.net/github/license/timkurvers/eslint-config)](LICENSE.md)
![Checks](https://badgen.net/github/checks/timkurvers/eslint-config)My ESLint configuration, based on [Airbnb's](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb).
## Usage
Available via [npm](https://www.npmjs.com):
```shell
npm install --save-dev @timkurvers/eslint-config
```Dependencies to install:
```shell
npm install --save-dev eslint eslint-plugin-import eslint-config-airbnb
```Tweak `.eslintrc`:
```json
{
"extends": "@timkurvers"
}
```### React
Additional dependencies to install:
```shell
npm install --save-dev eslint-plugin-react eslint-plugin-jsx-a11y
```Tweak `.eslintrc`:
```json
{
"extends": "@timkurvers/eslint-config/react"
}
```