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: 4 months 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 (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2025-11-15T11:16:38.000Z (7 months ago)
- Last Synced: 2026-01-29T15:56:39.224Z (5 months ago)
- Topics: config, ecmascript, eslint, eslint-config, javascript, lint
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@jakejarvis/eslint-config
- Size: 181 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
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