From aa6c33470379c4e319f5e9f2d2184035e334b0d8 Mon Sep 17 00:00:00 2001 From: Eric Zhao Date: Fri, 4 Jan 2019 14:19:46 +0800 Subject: [PATCH] Disable spell checking in Circle CI lint temporary (need more config later) Signed-off-by: Eric Zhao --- .circleci/config.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 98a0458e..9e700a40 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -36,14 +36,14 @@ jobs: # fi # done # bash -c "exit $code"; - - run: - name: use opensource tool client9/misspell to correct commonly misspelled English words - command: | - find ./* -name "*" | grep -v vendor | xargs misspell -error - - run: - name: use ShellCheck (https://github.com/koalaman/shellcheck) to check the validateness of shell scripts in pouch repo - command: | - find ./ -name "*.sh" | grep -v vendor | xargs shellcheck +# - run: +# name: use opensource tool client9/misspell to correct commonly misspelled English words +# command: | +# find ./* -name "*" | grep -v vendor | xargs misspell -error +# - run: +# name: use ShellCheck (https://github.com/koalaman/shellcheck) to check the validateness of shell scripts in pouch repo +# command: | +# find ./ -name "*.sh" | grep -v vendor | xargs shellcheck workflows: version: 2