Don't check in cpplint
This commit is contained in:
parent
10d3801d7e
commit
e8760eee34
3 changed files with 10 additions and 4754 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -7,4 +7,5 @@ Makefile
|
|||
*.xcodeproj
|
||||
|
||||
spec/run.out*
|
||||
externals/cpplint.py
|
||||
out
|
||||
|
|
|
|||
4753
externals/cpplint.py
vendored
4753
externals/cpplint.py
vendored
File diff suppressed because it is too large
Load diff
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue