bump max line length to 100

otherwise our summary.md doesn't fit
This commit is contained in:
Niko Matsakis 2018-09-10 14:34:48 -04:00
parent 83ef63b957
commit bce808f911
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ cache:
- cargo - cargo
before_install: before_install:
- shopt -s globstar - shopt -s globstar
- MAX_LINE_LENGTH=80 bash ci/check_line_lengths.sh src/**/*.md - MAX_LINE_LENGTH=100 bash ci/check_line_lengths.sh src/**/*.md
install: install:
- source ~/.cargo/env || true - source ~/.cargo/env || true
- bash ci/install.sh - bash ci/install.sh

View File

@ -2,7 +2,7 @@
if [ "$1" == "--help" ]; then if [ "$1" == "--help" ]; then
echo 'Usage:' echo 'Usage:'
echo ' MAX_LINE_LENGTH=80' "$0" 'src/**/*.md' echo ' MAX_LINE_LENGTH=100' "$0" 'src/**/*.md'
exit 1 exit 1
fi fi