https://github.com/munierujp/eslint-config
ESLint Shareable Config for JavaScript
https://github.com/munierujp/eslint-config
Last synced: 4 months 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 (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-21T23:10:08.000Z (4 months ago)
- Last Synced: 2025-03-22T00:19:53.987Z (4 months ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@munierujp/eslint-config
- Size: 218 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 6
-
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)