Don't check in cpplint

This commit is contained in:
Max Brunsfeld 2014-05-09 16:32:57 -07:00
parent 10d3801d7e
commit e8760eee34
3 changed files with 10 additions and 4754 deletions

1
.gitignore vendored
View file

@ -7,4 +7,5 @@ Makefile
*.xcodeproj
spec/run.out*
externals/cpplint.py
out

4753
externals/cpplint.py vendored

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,14 @@
#!/usr/bin/env bash
externals/cpplint.py \
CPPLINT=externals/cpplint.py
CPPLINT_URL=http://google-styleguide.googlecode.com/svn/trunk/cpplint/cpplint.py
if [[ ! -f $CPPLINT ]]; then
curl $CPPLINT_URL > $CPPLINT
chmod +x $CPPLINT
fi
$CPPLINT \
--root=src \
--linelength=110 \
--filter=-legal/copyright,-readability/namespace,-whitespace/indent,-whitespace/line_length \