/eslint-config-simonepizzoleo

Personal ESLint rules for building software. Designed from @simonepizzoleo.

Primary LanguageJavaScript

📝 Personal ESLint rules for Software Development

This repository contains all the ESLint rules being used in all my personal projects.

To use the ESLint rules of mine, run the following command in the repository you would like to use them:

npm i -D eslint-config-simonepizzoleo

🚀 Insert the downloaded ESLint rules in your ESLint configuration

Within your ESLint configuration file (the JSON configuration file should be named .eslintrc.json), add the following:

{

    "extends": ["simonepizzoleo"]

}

You can also use the full name of the module, like below.

{

    "extends": ["eslint-config-simonepizzoleo"]

}