https://github.com/foxriver76/eslint-config
Shared eslint config over several projects
https://github.com/foxriver76/eslint-config
Last synced: 4 months ago
JSON representation
Shared eslint config over several projects
- Host: GitHub
- URL: https://github.com/foxriver76/eslint-config
- Owner: foxriver76
- Created: 2023-09-21T06:12:23.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-05T13:20:19.000Z (11 months ago)
- Last Synced: 2025-01-04T17:45:51.254Z (6 months ago)
- Language: JavaScript
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Eslint config for projects
## Installation
Install the package via```bash
npm i @foxriver76/eslint-config --save-dev
```## Getting started
Just extend this project in your lint config in your `eslint.config.json`.```json
{
"extends": ["@foxriver76/eslint-config"]
}
```And create a `prettier.config.js` with the following content:
```js
module.exports = require('@foxriver76/eslint-config/prettier');
```