@mcansh/eslint-config
v5.0.0
Published
my usual eslint config
Downloads
41
Readme
eslint-config-mcansh
Installation
$ yarn add -D @mcansh/eslint-configthen install the peerDependencies
$ npx install-peerdeps @mcansh/eslint-config --devfollowed 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'],
};