@munierujp/eslint-config
v30.1.1
Published
ESLint Shareable Config for JavaScript
Downloads
55
Maintainers
Readme
@munierujp/eslint-config
ESLint Shareable Config for JavaScript
Requirements
- Node.js v20 or later
- ESLint v8
Installation
npm:
npm i -D @munierujp/eslint-config
Yarn:
yarn add -D @munierujp/eslint-config
pnpm:
pnpm add -D @munierujp/eslint-config
Usage
Add @munierujp
to the extends
section of your ESLint configuration file.
JavaScript:
module.exports = {
extends: [
'@munierujp'
// add other rulesets here if needed
]
}
YAML:
extends:
- @munierujp
# add other rulesets here if needed
JSON:
{
"extends": [
"@munierujp"
// add other rulesets here if needed
]
}