@munierujp/eslint-config
v32.0.0
Published
ESLint Shareable Config for JavaScript
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-configYarn:
yarn add -D @munierujp/eslint-configpnpm:
pnpm add -D @munierujp/eslint-configUsage
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 neededJSON:
{
"extends": [
"@munierujp"
// add other rulesets here if needed
]
}