Skip to content

Commit

Permalink
Exempt tables from length limit
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeBishop committed Mar 7, 2017
1 parent b017401 commit 1bea6b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ endif
latest::
@if grep -l ' $$' *.md; then ! echo "Trailing whitespace found"; fi
@err=0; for f in draft-*.md ; do \
line=$$(cat "$$f" | wc -L); \
line=$$(cat "$$f" | sed -e 's/[|].*[|]//' | wc -L); \
if [ "$$line" -gt 80 ]; then \
echo "$$f contains a line with >80 ($$line) characters"; err=1; \
fi; \
Expand Down

0 comments on commit 1bea6b8

Please sign in to comment.