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
- Host: GitHub
- URL: https://github.com/dvcol/eslint-config
- Owner: dvcol
- License: mit
- Created: 2025-04-15T16:55:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-03-21T20:12:43.000Z (3 months ago)
- Last Synced: 2026-03-22T06:50:23.688Z (3 months ago)
- Language: TypeScript
- Size: 555 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
});
```