general: Enforce 100 chars per line.

This commit is contained in:
Dylan Araps 2017-08-02 12:57:00 +10:00
parent 5467fb47da
commit d7abf3ce68
2 changed files with 4 additions and 4 deletions

View file

@ -20,5 +20,5 @@ script:
- time ./neofetch --ascii --config config/travis.conf -v
# See this wiki page for why we're disabling these errors.
# https://github.com/dylanaraps/neofetch/wiki/Shellcheck-Exclusions
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck neofetch -e SC1090,SC2009,SC2012,SC2016,SC2034,SC2128,SC2153,SC2154,SC2178,SC2010; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then shellcheck neofetch -e SC1090,SC2009,SC2012,SC2016,SC2034,SC2128,SC2153,SC2154,SC2178,SC2010,SC1004; fi
- if grep '.\{101\}' neofetch; then (exit 1); else (exit 0); fi