/ng-tslint-config

My personal tslint config for Angular projects

Primary LanguageJavaScript

DHainzl TSLint Config

A TSLint config for my personal projects

Installation

npm install @dhainzl/ng-tslint-config --save

Usage

In tslint.json:

{
  "extends": "@dhainzl/ng-tslint-config"
}

Modification

If you edit this lib, you need to manually update the version in the package.json and afterwards npm publish it yourself; There is no automated build here.

Usually, I run the following commands (in this example updating to 6.1.1):

<Change version to 6.1.1 in package.json>
git commit -am <commit msg>
git push
git tag 6.1.1
git push origin 6.1.1
npm publish --access public