Sha256: 3f5edd7a1fb3eecfb3d1ab2d89787310eb05cfda2903480b83aed1a89988e8b2

Contents?: true

Size: 284 Bytes

Versions: 3

Compression:

Stored size: 284 Bytes

Contents

#!/bin/bash
# Lint Ruby according to Jekyll's conventions
set -e

echo "Rubocop $(bundle exec rubocop --version)"
bundle exec rubocop -S -D -E $@
success=$?
if ((success != 0)); then
   echo -e "\nTry running \`script/fmt -a\` to automatically fix errors"
fi
exit $success

Version data entries

3 entries across 3 versions & 3 rubygems

Version Path
jekyll-html-1.0.2 script/fmt
jekyll-w2m-1.0.1 script/fmt
disqus-for-jekyll-1.0.5 script/fmt