https://github.com/munierujp/eslint-config
ESLint Shareable Config for JavaScript
https://github.com/munierujp/eslint-config
Last synced: 20 days ago
JSON representation
ESLint Shareable Config for JavaScript
- Host: GitHub
- URL: https://github.com/munierujp/eslint-config
- Owner: munierujp
- License: mit
- Created: 2022-10-05T10:11:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-09-19T17:15:49.000Z (about 1 month ago)
- Last Synced: 2025-09-19T19:52:13.763Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@munierujp/eslint-config
- Size: 220 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://badge.fury.io/js/%40munierujp%2Feslint-config)
[](https://github.com/munierujp/eslint-config/actions/workflows/lint.yml)
[](https://github.com/eslint-recommended)
# @munierujp/eslint-config
ESLint Shareable Config for JavaScript
## Requirements
- Node.js v20 or later
- ESLint v8
## Installation
npm:
```sh
npm i -D @munierujp/eslint-config
```
Yarn:
```sh
yarn add -D @munierujp/eslint-config
```
pnpm:
```sh
pnpm add -D @munierujp/eslint-config
```
## Usage
Add `@munierujp` to the `extends` section of your [ESLint configuration file](https://eslint.org/docs/latest/use/configure/configuration-files-deprecated).
JavaScript:
```javascript
module.exports = {
extends: [
'@munierujp'
// add other rulesets here if needed
]
}
```
YAML:
```yaml
extends:
- @munierujp
# add other rulesets here if needed
```
JSON:
```jsonc
{
"extends": [
"@munierujp"
// add other rulesets here if needed
]
}
```
## Related Packages
- [@munierujp/eslint-config-typescript](https://www.npmjs.com/package/@munierujp/eslint-config-typescript)