mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
13 lines
241 B
Bash
Executable file
13 lines
241 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
clang-tidy --version
|
|
|
|
find \
|
|
src/ \
|
|
tests/src/ \
|
|
benchmarks/src/ \
|
|
mocks/include/ \
|
|
-type f \( -name "*.hpp" -o -name "*.cpp" \) -print0 | parallel -0 -j16 -I {} clang-tidy --quiet "$@" "{}"
|