An open API service indexing awesome lists of open source software.

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

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"
}
```