From ab713827a542662cce294ebd3dd1851306622a57 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Thu, 23 Jul 2015 15:57:58 -0700 Subject: [PATCH 1/3] Add `jake lint` to README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 57dfe06c67c..f7f1838c8fb 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,8 @@ jake runtests # Run tests using the built compiler and test infrastructu # Use host= or tests=. jake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional parameters 'host=', 'tests=[regex], reporter=[list|spec|json|]'. -jake baseline-accept # This replaces the baseline test results with the results obtained from jake runtests. +jake baseline-accept # This replaces the baseline test results with the results obtained from jake runtests. +jake lint # Runs tslint over the compiler jake -T # List the above commands. ``` From a16920b577edd587763d9b1d2a361effbe5e4548 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Thu, 23 Jul 2015 16:06:46 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f7f1838c8fb..2912624c679 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ jake runtests # Run tests using the built compiler and test infrastructu jake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional parameters 'host=', 'tests=[regex], reporter=[list|spec|json|]'. jake baseline-accept # This replaces the baseline test results with the results obtained from jake runtests. -jake lint # Runs tslint over the compiler +jake lint # Runs tslint over the TypeScript source code jake -T # List the above commands. ``` From 7cd7ae7c1571716f13d2c13d3193bbd0dfdf69eb Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Thu, 23 Jul 2015 16:07:30 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2912624c679..8fdf088f6d9 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ jake runtests # Run tests using the built compiler and test infrastructu jake runtests-browser # Runs the tests using the built run.js file. Syntax is jake runtests. Optional parameters 'host=', 'tests=[regex], reporter=[list|spec|json|]'. jake baseline-accept # This replaces the baseline test results with the results obtained from jake runtests. -jake lint # Runs tslint over the TypeScript source code +jake lint # Runs tslint on the TypeScript source jake -T # List the above commands. ```