Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
2efca6a
Initial clang-format
brendan-nasa Dec 14, 2025
6a70671
Update .clang-format
brendan-nasa Apr 1, 2026
cbb5923
Update .clang-format
brendan-nasa Apr 1, 2026
193b719
ci: Adopt style ci
brendan-nasa Apr 9, 2026
a967f85
ci: single-file ci!
brendan-nasa Apr 10, 2026
3b218bb
ci: add perl formatting
brendan-nasa Apr 10, 2026
c32cfe9
Update .clang-format for alignment and brace style
brendan-nasa Apr 15, 2026
25af929
ci: split test-reports off from CI to account for forks
brendan-nasa Apr 22, 2026
c280dc5
add 120 column limit and remove empty lines
brendan-nasa Apr 22, 2026
02d4723
Update makeflag handling
brendan-nasa Apr 23, 2026
c01c493
Add Ubuntu 26 testing
brendan-nasa Apr 23, 2026
963a7e6
Switch code-coverage to run on ubuntu-latest
brendan-nasa Apr 23, 2026
52688d8
more fixes for flaky gh actions
brendan-nasa Apr 23, 2026
63adc62
code-coverage: ignore errors
brendan-nasa Apr 23, 2026
a9322cb
Merge branch 'master' into clang-format-proposal
brendan-nasa Apr 23, 2026
bad103b
Update test_client.hh
brendan-nasa Apr 23, 2026
02e0fcc
Update .clang-format
brendan-nasa Apr 23, 2026
af1adb7
Update code-coverage flags
brendan-nasa Apr 23, 2026
5e98602
more simplification
brendan-nasa Apr 23, 2026
7b2e43a
Update Makefile
brendan-nasa Apr 23, 2026
85e553a
Fix curl deps on rhel and flag setting
brendan-nasa Apr 23, 2026
e7b085e
Update ci.yml
brendan-nasa Apr 23, 2026
a8cfdec
Update ci.yml
brendan-nasa Apr 23, 2026
c2399c2
Revert makefile changes
brendan-nasa Apr 23, 2026
6419c36
Update Makefile
brendan-nasa Apr 23, 2026
f17f5f3
update .gitignores
brendan-nasa Apr 23, 2026
3d17b84
Use rockylinux/rockylinux:8 image in CI
brendan-nasa Apr 23, 2026
745244c
Update Makefile
brendan-nasa Apr 23, 2026
3721fc8
Update Makefile.common
brendan-nasa Apr 23, 2026
2b1ad83
Revert changes made to deal with flaky gh runners
brendan-nasa Apr 23, 2026
57a8b2d
Always set GTEST_CXXSTD to c++17
brendan-nasa Apr 23, 2026
c8adc4a
Update clang-format configuration options
brendan-nasa May 5, 2026
027867e
Update clang-format for alignment settings
brendan-nasa May 6, 2026
7ad2629
Merge branch 'master' into clang-format-proposal
brendan-nasa May 6, 2026
dd91603
Add python format check
brendan-nasa May 6, 2026
2cfbbec
Don't fail if changed files found
brendan-nasa May 6, 2026
4875b48
Build and test even if style check fails
brendan-nasa May 6, 2026
f11412d
Use ruff preview switch
brendan-nasa May 6, 2026
67ccf9f
move trickops makefile gitignore from top level to directory level
brendan-nasa May 6, 2026
cbea26d
Update .clang-format
brendan-nasa May 7, 2026
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
25 changes: 25 additions & 0 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
BasedOnStyle: WebKit
AccessModifierOffset: -2
AlignAfterOpenBracket: Align
AlignArrayOfStructures: Left
AlignConsecutiveAssignments: Consecutive
AlignTrailingComments:
Kind: Always
BreakBeforeBraces: Allman
ColumnLimit: 120
IncludeBlocks: Regroup
IncludeCategories:
- Regex: '^("|<)trick/'
Priority: 2
- Regex: '^("|<)(llvm|llvm-c|clang|clang-c)/'
Priority: 3
- Regex: '^("|<)(gtest|gmock)/'
Priority: 5
- Regex: "^<.*>"
Priority: 4
- Regex: ".*"
Priority: 1
KeepEmptyLinesAtEOF: false
KeepEmptyLinesAtTheStartOfBlocks: false
...
Loading