Fix some egregiously long lines

This commit is contained in:
Max Brunsfeld 2014-03-09 23:51:33 -07:00
parent 39cb420df2
commit 3aaa08b948
21 changed files with 117 additions and 49 deletions

View file

@ -1,6 +1,9 @@
#!/usr/bin/env bash
filters=-whitespace,-readability/namespace,-legal/copyright
cpplint=externals/cpplint.py
find src/compiler -type f | xargs $cpplint --root=src --filter=$filters 2>&1
find src/compiler -type f | xargs $cpplint \
--root=src \
--linelength=110 \
--filter=-readability/namespace,-legal/copyright \
2>&1