We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9696569 commit eb466a3Copy full SHA for eb466a3
tools/travis-scripts/run-script.sh
@@ -45,8 +45,8 @@ function build_linux_clang_tidy()
45
cd clang-tidy-build
46
cmake ../.. -DCMAKE_EXPORT_COMPILE_COMMANDS=on
47
clang_tidy_script=$(dirname $(dirname $(readlink -f `which clang-tidy`)))/share/clang/run-clang-tidy.py
48
- # run clang-tidy on all files except those in external directory
49
- python $clang_tidy_script '^((?!/cocos2d-x/external/).)*$'
+ # disable clang-tidy checks on external directory and cocos/scripting directory
+ python $clang_tidy_script '^((?!/cocos2d-x/external/|/cocos/scripting/).)*$'
50
}
51
52
function build_mac()
0 commit comments