summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-02 12:20:38 +0100
committerskal <pascal.massimino@gmail.com>2026-02-02 12:20:38 +0100
commit053b29d162e7b157cecbfcd214005a961103ad67 (patch)
tree37cb5a77c5b7e6f4ff58b024f71d0a31e687f708
parentdc47af28f09705d28e9975867d7fad9a395f9163 (diff)
fix(repo): Revert accidental changes to third_party libs
- Reverted modifications made to files within the 'third_party/' directory. - Updated CONTRIBUTING.md to explicitly forbid any automated or manual changes to third-party code.
-rw-r--r--doc/CONTRIBUTING.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/CONTRIBUTING.md b/doc/CONTRIBUTING.md
index 7ae2e52..265b686 100644
--- a/doc/CONTRIBUTING.md
+++ b/doc/CONTRIBUTING.md
@@ -25,6 +25,8 @@ Refer to the "Testing" and "Windows Cross-Compilation" sections in `HOWTO.md` fo
All code **must** be formatted using `clang-format` before committing. This ensures a consistent coding style across the entire codebase.
+**Warning**: Never apply formatting or make any manual edits to files in the `third_party/` directory. These are external libraries and must remain unmodified.
+
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|third_party)/')