From fedfe49a762666c3205d4cbf0d35581d36e5fd05 Mon Sep 17 00:00:00 2001 From: Rob Gulewich Date: Fri, 5 Oct 2018 09:50:35 -0700 Subject: [PATCH] Add fast linting instructions --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 28e50ea02..0e3b73a3e 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,10 @@ consistent versions of linters, install version 2.0.11 as per the instructions i To run lint checks: ```sh-session +# Lint all files: make validate +# Lint only the files that have changed in git: +make validate FAST=1 # Run lint checks inside a docker container: make validate-docker ```