1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

Disable clang-format, clean up scripts

This commit is contained in:
rubenwardy 2021-01-23 23:48:22 +00:00 committed by sfan5
parent b390bd2ea5
commit ccdaf5de54
3 changed files with 42 additions and 15 deletions

View file

@ -1,6 +1,6 @@
#! /bin/bash
function perform_lint() {
echo "Performing LINT..."
function setup_for_format() {
if [ -z "${CLANG_FORMAT}" ]; then
CLANG_FORMAT=clang-format
fi
@ -8,6 +8,12 @@ function perform_lint() {
CLANG_FORMAT_WHITELIST="util/ci/clang-format-whitelist.txt"
files_to_lint="$(find src/ -name '*.cpp' -or -name '*.h')"
}
function check_format() {
echo "Checking format..."
setup_for_format
local errorcount=0
local fail=0
@ -41,3 +47,18 @@ function perform_lint() {
echo "LINT OK"
}
function fix_format() {
echo "Fixing format..."
setup_for_format
for f in ${files_to_lint}; do
whitelisted=$(awk '$1 == "'$f'" { print 1 }' "$CLANG_FORMAT_WHITELIST")
if [ -z "${whitelisted}" ]; then
echo "$f"
$CLANG_FORMAT -i "$f"
fi
done
}

5
util/fix_format.sh Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash -e
. ./util/ci/clang-format.sh
fix_format