@mcansh/eslint-config
v5.0.0
Published
my usual eslint config
Downloads
54
Readme
eslint-config-mcansh
Installation
$ yarn add -D @mcansh/eslint-config
then install the peerDependencies
$ npx install-peerdeps @mcansh/eslint-config --dev
followed by adding it to your eslint config
for react (javascript)
module.exports = {
extends: ['@mcansh'],
};
for react (typescript)
module.exports = {
extends: ['@mcansh/eslint-config/typescript'],
};
for everything else
module.exports = {
extends: ['@mcansh/eslint-config/base'],
};