1.3.0-master.63922559 • Published 7 years ago

tslint-config-escapace v1.3.0-master.63922559

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

tslint-config-escapace

tslint configuration

build status Greenkeeper badge 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:latest",
        "tslint-microsoft-contrib",
        "tslint-config-standard",
        "tslint-config-prettier"
    ]
}