https://github.com/9akashnp8/eslint-config-node
My Personal eslint config for node/express apps
https://github.com/9akashnp8/eslint-config-node
eslint eslint-config javascript-linter prettier prettier-eslint typescript
Last synced: 3 days ago
JSON representation
My Personal eslint config for node/express apps
- Host: GitHub
- URL: https://github.com/9akashnp8/eslint-config-node
- Owner: 9akashnp8
- Created: 2023-11-19T08:46:07.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-08T07:48:35.000Z (over 2 years ago)
- Last Synced: 2025-10-28T04:17:42.575Z (6 months ago)
- Topics: eslint, eslint-config, javascript-linter, prettier, prettier-eslint, typescript
- Language: JavaScript
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About
My personal shareable/reusable eslint config for node/express apps.
# Usage
## New project:
`npm init @eslint/config -- --config @9akashnp8/eslint-config-node`
## Existing Project
1. `npm install @9akashnp8/eslint-config-node`
2. Create the eslint config file (`.eslintrc.{js,yml,json}`) in your root dir and extend from this config
```json
{
"extends": "eslint:recommended"
}
```