Skip to content

Commit

Permalink
Disable clang-format check
Browse files Browse the repository at this point in the history
- Clang Format is irreparably broken and cannot be commanded to stop aligning function arguments with the opening parenthesis of the function call.
- As a result, disable the clang-format check for all pull requests indefinitely.
  • Loading branch information
sturnclaw committed Feb 4, 2024
1 parent db71260 commit 40e50ec
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ name: Clang Format
on:
pull_request:
paths:
- 'src/**.cpp'
- 'src/**.h'
#- 'src/**.cpp'
#- 'src/**.h'
# Disable clang-format workflow until it will obey its own config and
# stop aligning function parameters with the opening parenthesis
.clang-format

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-format
Expand Down

0 comments on commit 40e50ec

Please sign in to comment.