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

https://github.com/dvcol/eslint-config

Sharable eslint configs
https://github.com/dvcol/eslint-config

Last synced: 3 months ago
JSON representation

Sharable eslint configs

Awesome Lists containing this project

README

          

# Eslint Config

Shared ESLint configuration for JavaScript and TypeScript projects.

## Installation

```bash
pnpm install --save-dev @dvcol/eslint-config
```

## Usage

Create a `eslint.config.js` file in the root of your project and extend the configuration:

```javascript
import { defineConfig } from '@dvcol/eslint-config';

export default defineConfig({
// Your custom configuration
});
```