Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/foxriver76/eslint-config
Shared eslint config over several projects
https://github.com/foxriver76/eslint-config
Last synced: 28 days 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-05T13:20:19.000Z (3 months ago)
- Last Synced: 2024-08-05T15:17:50.513Z (3 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');
```