1.1.0 • Published 2 years ago
eslint-config-base-alexpagnotta v1.1.0
Alex Pagnotta's Eslint Base Config
Base Eslint configuration for all my personal projects, used as a base for all the other configurations, but can be also used standalone for specific projects.
Installation
To install it on your project, you can simply run npm install --save-dev @alexpagnotta/eslint-config-base-alexpagnotta
.
Once installed you can just import it in your .eslintrc.js
file:
module.exports = {
extends: ["@alexpagnotta/eslint-config-base"],
...
};