6.0.0 • Published 9 years ago
eslint-config-makeapps v6.0.0
eslint-config-makeapps
Installation/usage
Our default export contains all of our ESLint rules, including ECMAScript 6+. It requires:
eslintbabel-eslinteslint-config-airbnb-baseeslint-plugin-importeslint-plugin-bettereslint-plugin-fpeslint-plugin-lodash-fp
Ensure packages are installed with correct version numbers by running:
( export PKG=eslint-config-makeapps; npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs yarn add --dev "$PKG@latest" )If you don't have
yarninstalled, use this instead:( export PKG=eslint-config-makeapps; npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm i --save-dev "$PKG@latest" )Add
"extends": "makeapps"to your ESLint configuration.