1.0.3 • Published 6 years ago
@baconshake/eslint-config-typescript-base v1.0.3
@baconshake/eslint-config-typescript-base
This package provides Baconshakes's .eslintrc as an extensible shared config.
It's built upon eslint-config-airbnb-base
Installation
This package has a few peer dependencies. You can install them a few different ways:
npx install-peerdeps @baconshake/eslint-config-typescript-basenpm info "@baconshake/eslint-config-typescript-base" peerDependenciesOr run this script:
(
  export PKG="@baconshake/eslint-config-typescript-base";
  npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG@latest"
)Usage
In you .eslintrc, simply extend the config.
{
  "extends": ["@baconshake/eslint-config-typescript-base"]
}