mirror of
https://github.com/github/gitignore.git
synced 2026-08-25 17:32:47 +02:00
Add gitignore template for Zephyr RTOS projects covering: - Build artifacts and twister output - Generated config/devicetree files - West workspace metadata - Python virtual environments
28 lines
341 B
Plaintext
28 lines
341 B
Plaintext
# Zephyr RTOS build artifacts
|
|
/build/
|
|
/twister-out*/
|
|
|
|
# Generated configuration files
|
|
*.config
|
|
*.config.old
|
|
/zephyr/.config
|
|
|
|
# Device tree generated files
|
|
*.dts.pre.tmp
|
|
*.dts_compiled
|
|
|
|
# Kconfig generated
|
|
autoconf.h
|
|
|
|
# West workspace
|
|
/.west/
|
|
|
|
# Python virtual environment
|
|
/.venv/
|
|
/venv/
|
|
|
|
# IDE
|
|
.vscode/launch.json
|
|
.vscode/tasks.json
|
|
*.jlink
|