"vscode:/vscode.git/clone" did not exist on "b4535b8d843c9f0881d9f30a0869def4a1aec83f"
Unverified Commit 4f89cc10 authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[ci] added build/include_subdir check to filter for cpplint (#2427)

parent 306c6dbf
......@@ -55,7 +55,7 @@ if [[ $TASK == "lint" ]]; then
pip install --user cpplint
pycodestyle --ignore=E501,W503 --exclude=./compute,./.nuget . || exit -1
pydocstyle --convention=numpy --add-ignore=D105 --match-dir="^(?!^compute|test|example).*" --match="(?!^test_|setup).*\.py" . || exit -1
cpplint --filter=-build/header_guard,-whitespace/line_length --recursive ./src ./include || exit 0
cpplint --filter=-build/include_subdir,-build/header_guard,-whitespace/line_length --recursive ./src ./include || exit 0
exit 0
fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment