cargo/.travis.check.style.sh
Alex Crichton 64ff29ff86 Update to rust style guidelines
* 80 char line limit highly recommended
* /// and //! for doc comments
2014-06-19 17:02:21 -07:00

4 lines
122 B
Bash
Executable File

echo "checking for lines over 100 characters..."
find src tests -name '*.rs' | xargs grep '.\{101,\}' && exit 1
echo "ok"