summaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-01-28 03:17:07 +0100
committerskal <pascal.massimino@gmail.com>2026-01-28 03:17:07 +0100
commitdefcc4504fb366d50b561563b28ccd64643e61af (patch)
tree38f71c9923932cb7074d195dd876286778b63f65 /CONTRIBUTING.md
parenta9dd5216ec35f1eda557d7945bcc8347aa251b2b (diff)
docs(contributing): Exclude third_party/ from clang-format
Updates the clang-format command in CONTRIBUTING.md to explicitly exclude the 'third_party/' directory. This prevents clang-format from modifying external library code and avoids potential processing issues.
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 8f94c37..ffacc81 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -16,7 +16,7 @@ All code **must** be formatted using `clang-format` before committing. This ensu
To format your code, run the following command from the project root:
```bash
-clang-format -i $(git ls-files | grep -E '\.(h|cc)$' | grep -vE '^(assets|archive)/')
+clang-format -i $(git ls-files | grep -E '\.(h|cc)$' | grep -vE '^(assets|archive|third_party)/')
```
Refer to the `.clang-format` file in the project root for the specific style rules.