From 72824f7cbad940ea8fc8449bc8490af5194566a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Str=C3=BCbing?= Date: Tue, 6 Nov 2018 20:58:43 +0100 Subject: [PATCH] tslint: add page (#2551) --- pages/common/tslint.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pages/common/tslint.md diff --git a/pages/common/tslint.md b/pages/common/tslint.md new file mode 100644 index 000000000..dc838bd88 --- /dev/null +++ b/pages/common/tslint.md @@ -0,0 +1,19 @@ +# tslint + +> A pluggable linting utility for TypeScript. + +- Create tslint config: + +`tslint --init` + +- Lint on a given set of files: + +`tslint {{filename}}.js {{filename1}}.js` + +- Fix lint issues: + +`tslint --fix` + +- Lint with the config file in the project root: + +`tslint --project {{path/to/project_root}}`