Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# EditorConfig helps editors and agents match project formatting defaults.
# C++ indentation rules are also documented in
# .github/instructions/cpp.instructions.md.

root = true

[*.{c,cc,cpp,h,hh,hpp}]
indent_style = space
indent_size = 4
tab_width = 4
6 changes: 6 additions & 0 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v6

# Fail fast on C++ indent drift (4 spaces, no tabs). Full-tree scan against
# the checkout — not Bazel runfiles — so we avoid per-package source filegroups.
# Unit helpers also run under `bazelisk test //python:cpp_indentation_test`.
- name: Check C++ indentation
run: python3 python/tests/cpp_indentation_test.py

# 2️⃣ Free up disk space (LLVM toolchain ~4 GB extracted; runners ship ~14 GB free)
- name: Free disk space
uses: jlumbroso/free-disk-space@v1.3.1
Expand Down
534 changes: 267 additions & 267 deletions benchmarks/dds_replay_main.cpp

Large diffs are not rendered by default.

Loading
Loading