Skip to content

munierujp/eslint-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

npm version lint ESLint Recommended

@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
  ]
}

Related Packages