Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakejarvis/eslint-config
⚙️ My shared ESLint config across personal projects.
https://github.com/jakejarvis/eslint-config
config ecmascript eslint eslint-config javascript lint
Last synced: about 1 month ago
JSON representation
⚙️ My shared ESLint config across personal projects.
- Host: GitHub
- URL: https://github.com/jakejarvis/eslint-config
- Owner: jakejarvis
- License: mit
- Created: 2021-08-26T00:35:49.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-11T00:06:00.000Z (over 2 years ago)
- Last Synced: 2024-12-09T01:37:22.767Z (about 2 months ago)
- Topics: config, ecmascript, eslint, eslint-config, javascript, lint
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@jakejarvis/eslint-config
- Size: 152 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @jakejarvis/eslint-config
> [Shareable ESLint config](https://eslint.org/docs/developer-guide/shareable-configs.html) inspired heavily by [eslint-config-google](https://github.com/google/eslint-config-google) and moderately by [eslint-config-airbnb](https://github.com/airbnb/javascript/tree/master/packages/eslint-config-airbnb).
## Installation
```bash
yarn add --dev eslint "@jakejarvis/eslint-config@*"
```## Usage
`.eslintrc.json`:
```json5
{
"extends": [
"@jakejarvis/eslint-config"
],
"env": {
"browser": true,
"node": true
},
"rules": {
// Project-specific overrides...
}
}
```## License
MIT