diff options
author | Peter Wilmott <p@p8952.info> | 2015-08-16 16:38:38 +0100 |
---|---|---|
committer | Peter Wilmott <p@p8952.info> | 2015-08-16 16:38:38 +0100 |
commit | a8d9c9df0a84734227f7940a60ed24e4901b6038 (patch) | |
tree | 772b007ae4ade9f805c96137c2cc99361ae3206e /web | |
parent | Use Travis CI's container-based infrastructure for tests (diff) | |
download | ruby-tinderbox-a8d9c9df0a84734227f7940a60ed24e4901b6038.tar.gz ruby-tinderbox-a8d9c9df0a84734227f7940a60ed24e4901b6038.tar.bz2 ruby-tinderbox-a8d9c9df0a84734227f7940a60ed24e4901b6038.zip |
Drop shellcheck until I can work out how to get it on Travis
Diffstat (limited to 'web')
-rw-r--r-- | web/Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/Rakefile b/web/Rakefile index 3c9225a..fa80bd1 100644 --- a/web/Rakefile +++ b/web/Rakefile @@ -12,8 +12,8 @@ desc 'Run linters' task :lint do puts "RUBOCOP:\n" sh 'bundle exec rubocop' - puts "\nSHELLCHECK:\n" - sh "shellcheck --exclude=SC2016 #{Dir.glob('../**/*.sh').join(' ')}" + # puts "\nSHELLCHECK:\n" + # sh "shellcheck --exclude=SC2016 #{Dir.glob('../**/*.sh').join(' ')}" puts "\nPYLINT:\n" sh "pylint --rcfile=.pylintrc #{Dir.glob('../**/*.py').join(' ')}" end |