From 105d991146f71b84f615f346402e7fcb0e48b2de Mon Sep 17 00:00:00 2001 From: sangamcse Date: Wed, 28 Mar 2018 18:21:44 +0530 Subject: [PATCH] .coafile: Add ShellCheckBear This add a `bash` section and `bash` as default `shell` in `.coafile`. Also, add `shellcheck` as prerequisite for CircleCI. Closes https://github.com/coala/coala-bears/issues/2320 --- .coafile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.coafile b/.coafile index 1cb8239335..0d3d8db535 100644 --- a/.coafile +++ b/.coafile @@ -70,3 +70,9 @@ ignore = *.py [yml] bears = YAMLLintBear files = *.yml, .ci/*.yml, tests/**/*.yml + +[bash] +bears = ShellCheckBear +files = .ci/*.sh +shell = bash +shellcheck_ignore = SC2046, SC2154, SC2155