feat(core): add core/build-xtask folder into .gitgnore
What changed, and why it matters
This commit simply adds a new build output folder named 'build-xtask' to the .gitignore file in the Trezor firmware repository. A .gitignore file tells Git which files and folders to ignore and not track in version control. This change has no effect on the actual firmware code, device behavior, or security of the product. It is a routine housekeeping change for developers.
No security action needed. This is a benign repository hygiene change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds one line ‘build-xtask/’ to core/.gitignore, alongside existing entries for build/, build-docker/, .sconsign.dblite, compile_commands.json, and emu.config. This prevents build artifacts generated by the xtask build tooling from being accidentally committed to the repository. There are no code, configuration, cryptographic, or build-system logic changes.
Changed components
core/.gitignoreInspect captured patch +1 / −0
diff --git a/core/.gitignore b/core/.gitignore
index 25c2107f..38b5f230 100644
--- a/core/.gitignore
+++ b/core/.gitignore
@@ -1,5 +1,6 @@
build/
build-docker/
+build-xtask/
.sconsign.dblite
compile_commands.json
emu.config
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.