eslint-config-jonathanpalma 🛠️
These are my personal ESLint rules that I use in my project. Feel free to use them
Usage
Install them by running:
npm install --save-dev eslint eslint-config-jonathanpalma
Then add the extends to your .eslintrc
:
{
"extends": "jonathanpalma",
"rules": {
// rules you want to override
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"]
}
}
}
}
Then require the prettier conf by adding to your prettier.config.js
or .prettierrc.js
file:
const prettier = require('eslint-config-jonathanpalma/prettier');
module.exports = prettier;
LICENSE
MIT