Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mellkam/eslint-config
https://github.com/mellkam/eslint-config
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mellkam/eslint-config
- Owner: MellKam
- Created: 2022-07-13T17:16:44.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-26T17:40:52.000Z (about 2 years ago)
- Last Synced: 2024-04-25T09:42:18.804Z (9 months ago)
- Language: JavaScript
- Size: 28.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
```bash
npm install --save-dev @mellkam/eslint-config
``````bash
yarn add -D @mellkam/eslint-config
``````bash
pnpm add -D @mellkam/eslint-config
```## Peer dependencies
- eslint
- prettier
- typescript## Eslint config example
```javascript
module.exports = {
root: true,
extends: ['@mellkam/eslint-config'],
parserOptions: {
project: './tsconfig.json',
},
};```
## Prettier config example
```javascript
module.exports = require('@mellkam/eslint-config/prettier');
```