mirror of
https://github.com/hkalexling/Mango.git
synced 2025-08-02 10:55:30 -04:00
6 lines
210 B
Bash
Executable File
6 lines
210 B
Bash
Executable File
#!/bin/sh
|
|
|
|
[ ! -z "$(grep '.\{80\}' --exclude-dir=lib --include="*.cr" -nr --color=always . | grep -v "routes/api.cr" | tee /dev/tty)" ] \
|
|
&& echo "The above lines exceed the 80 characters limit" \
|
|
|| exit 0
|