0904767cf2
* fix: Log JS Stack on Error * Android * Format Stacktrace better * Update FrameProcessorUtils.mm * Allow unapproved C++11 headers * Use `.c_str()`
8 lines
386 B
Bash
Executable File
8 lines
386 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if which cpplint >/dev/null; then
|
|
cpplint --linelength=230 --filter=-legal/copyright,-readability/todo,-build/namespaces,-whitespace/comments,-build/include_order,-build/c++11 --quiet --recursive --exclude "android/src/main/cpp/reanimated-headers" cpp android/src/main/cpp
|
|
else
|
|
echo "warning: cpplint not installed, download from https://github.com/cpplint/cpplint"
|
|
fi
|