https://github.com/marknjunge/eslint-config
My eslint configuration
https://github.com/marknjunge/eslint-config
Last synced: 8 days ago
JSON representation
My eslint configuration
- Host: GitHub
- URL: https://github.com/marknjunge/eslint-config
- Owner: MarkNjunge
- License: mit
- Created: 2021-01-04T08:10:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-08-01T15:39:56.000Z (almost 3 years ago)
- Last Synced: 2025-10-11T14:11:24.670Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 73.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
# @marknjunge/eslint-config
[](https://www.npmjs.com/package/@marknjunge/eslint-config)
My ESLint config
## Usage
Install the package
```
npm install --save-dev @marknjunge/eslint-config
```
Add it to the `extends` section of your `.eslintrc` file.
```javascript
extends: ["...", "@marknjunge/eslint-config"]
```
Add the following helpful scripts
```json
"lint": "eslint **/*.js",
"lint:fix": "eslint **/*.js --fix"
```