Skip to main content

TSLint

Review TypeScript with Hound

Written by Scott

Hound uses TSLint (v5.9.1) to review TypeScript code.

To enable TypeScript style checking, add the following to your .hound.yml

tslint:
  enabled: true

To change the way TSLint is configured, add a tslint.json file to your project, configure it as desired (see the TSLint rules), and reference it in .hound.yml

tslint:
  config_file: tslint.json
Did this answer your question?