Eslint Unicorn Configuration
- Install the correct version of package, which are listed by the command:
npm install "@sanv/eslint-config-unicorn" --save-dev
- Add next line to your
.eslintrc.js
:
module.exports = {
plugins: ['prettier'],
extends: [
'@sanv/eslint-config-unicorn',
'plugin:prettier/recommended',
],
}