From 93d2d30867bc9de150177ac1c2355f1cb97fcc64 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 25 Jan 2019 11:08:17 +0530 Subject: [PATCH] Do whitespace check on CircleCI --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 139a9c65c..dbd98710d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,3 +6,4 @@ jobs: steps: - checkout - run: echo "A first hello" + - run: if grep -Inr '\s$' kitty kitty_tests kittens docs *.py *.asciidoc *.rst .gitattributes .gitignore; then echo Trailing whitespace found, aborting.; exit 1; fi