2014-03-09 21:37:03 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
2014-03-09 22:05:17 -07:00
|
|
|
cpplint=externals/cpplint.py
|
|
|
|
|
|
2014-03-09 23:51:33 -07:00
|
|
|
find src/compiler -type f | xargs $cpplint \
|
|
|
|
|
--root=src \
|
|
|
|
|
--linelength=110 \
|
|
|
|
|
--filter=-readability/namespace,-legal/copyright \
|
|
|
|
|
2>&1
|