mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
13 lines
414 B
Bash
13 lines
414 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Format all C++ files in repo
|
||
|
#
|
||
|
# Author: Steffen Vogel <post@steffenvogel.de>
|
||
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
TOP_DIR=$(git rev-parse --show-toplevel)
|
||
|
|
||
|
find ${TOP_DIR} -iname "*.cpp" -o -iname "*.hpp" -o -iname "*.h" -o -iname "*.c" | \
|
||
|
xargs clang-format --verbose -i
|