46 lines
806 B
Text
46 lines
806 B
Text
# Copyright (c) 2025-2026 Taras Greben
|
|
# SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Commercial-pcb-retrace
|
|
# See LICENSE file for details.
|
|
|
|
# --- Operating System Files ---
|
|
.DS_Store
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
._*
|
|
|
|
# --- Editor & IDE Configs ---
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# --- Exported Data & Backups ---
|
|
# Prevent committing personal board data, exports, or test images
|
|
*.zip
|
|
!docs/assets/
|
|
!docs/assets/kicad-symbols-master.zip
|
|
*.csv
|
|
*.net
|
|
*.kicad_sch
|
|
*.kicad_pcb
|
|
|
|
# Specific JSON exports (extracted from ZIPs)
|
|
# Note: We allow *.json generally for configs, but ignore these specific export names
|
|
device.json
|
|
bom.json
|
|
|
|
# --- Temporary / Test Files ---
|
|
tmp/
|
|
temp/
|
|
*.log
|
|
|
|
release.sh
|