5.0.0 • Published 2 years ago

@mcansh/eslint-config v5.0.0

Weekly downloads
67
License
MIT
Repository
github
Last release
2 years ago

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'],
};