1.6.0 • Published 5 years ago

tslint-config-escapace v1.6.0

Weekly downloads
28
License
MPL-2.0
Repository
github
Last release
5 years ago

tslint-config-escapace

tslint configuration

build status license

Usage

Install the correct versions of each package, which are listed by the command:

npm info "tslint-config-escapace@latest" peerDependencies

Linux/OSX users can simply run

(
    export PKG=tslint-config-escapace;
    npm info "$PKG@latest" peerDependencies --json | jq -r 'to_entries[] | "\"\(.key)@\(.value)\"" // empty' | xargs npm install --save-dev "$PKG@latest"
)

Alternatively either install all the peer dependencies manually, or use the install-peerdeps cli tool.

npm install -g install-peerdeps
install-peerdeps --dev tslint-config-escapace

Finally, add the extends to tslint.json

{
  "extends": [
    "tslint-config-escapace"
  ]
}