bump max line length to 100
otherwise our summary.md doesn't fit
This commit is contained in:
parent
83ef63b957
commit
bce808f911
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue