8 lines
300 B
Bash
8 lines
300 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if which cpplint >/dev/null; then
|
||
|
cpplint --linelength=230 --filter=-legal/copyright,-readability/todo,-build/namespaces,-whitespace/comments --quiet --recursive cpp android/src/main/cpp
|
||
|
else
|
||
|
echo "warning: cpplint not installed, download from https://github.com/cpplint/cpplint"
|
||
|
fi
|