File: format-code.sh

package info (click to toggle)
qtox 1.18.3-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 28,996 kB
  • sloc: cpp: 48,067; xml: 8,560; python: 704; sh: 232; makefile: 14
file content (29 lines) | stat: -rwxr-xr-x 703 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash

# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright © 2017-2019 by The qTox Project Contributors
# Copyright © 2024-2025 The TokTok team

# Format all C++ codebase tracked by git using `clang-format`.

# Requires:
#   * git
#   * clang-format

# usage:
#   ./$script

# Fail as soon as error appears
set -eu -o pipefail

readonly SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
readonly BASE_DIR="$SCRIPT_DIR/../"

format() {
  cd "$BASE_DIR"
  [[ -f .clang-format ]] # make sure that it exists
  # NOTE: some earlier than 3.8 versions of clang-format are broken
  # and will not work correctly
  clang-format -i -style=file "$(git ls-files "*.cpp" "*.h" "*.mm")"
}
format