Kelsidavis-WoWee/.gitignore
Kelsi 4ea36250be chore: expand gitignore, document PKGBUILD deps, fix branch ref
- .gitignore: add compile_commands.json, language server caches
  (.ccls-cache, .cache/clangd), and tag files (ctags, cscope)
- PKGBUILD: add per-dependency comments explaining purpose (SRP auth,
  Warden emulation, MPQ extraction, shader compilation, etc.)
- PKGBUILD: fix source branch from main → master (matches remote HEAD)
2026-03-30 18:42:02 -07:00

128 lines
1.6 KiB
Text

# Build directories
build/
build-debug/
build-sanitize/
bin/
lib/
# CMake
CMakeCache.txt
CMakeFiles/
cmake_install.cmake
Makefile
*.cmake
!CMakeLists.txt
# Compiled Object files
*.o
*.obj
*.slo
*.lo
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Compiled Static libraries
*.a
*.lib
*.la
# Executables
*.exe
*.out
*.app
wowee
# Claude Code internal state
.claude/
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Compilation database (regenerated by cmake)
compile_commands.json
# Language server caches
.ccls
.ccls-cache/
.cache/clangd/
# Tags
tags
TAGS
.tags
cscope.out
# External dependencies (except submodules and vendored headers)
extern/*
!extern/.gitkeep
!extern/imgui
!extern/vk-bootstrap
!extern/vk_mem_alloc.h
!extern/lua-5.1.5
# ImGui state
imgui.ini
# Logs
*.log
# Config files
config.ini
config.json
# Runtime cache (floor heights, etc.)
cache/
# Single-player saves
saves/
wowee_[0-9][0-9][0-9][0-9]
# Extracted assets (run ./extract_assets.sh or .\extract_assets.ps1 to generate)
Data/db/
Data/character/
Data/creature/
Data/terrain/
Data/world/
Data/interface/
Data/item/
Data/sound/
Data/spell/
Data/environment/
Data/misc/
Data/enUS/
Data/Character/
Data/Creature/
Data/World/
Data/manifest.json
Data/expansions/*/manifest.json
Data/expansions/*/assets/
Data/expansions/*/overlay/
Data/expansions/*/db/*.csv
Data/hd/
ingest/
# Asset pipeline state and texture packs
asset_pipeline/
# Local texture dumps / extracted art should never be committed
assets/textures/
node_modules/
# Python cache artifacts
tools/__pycache__/
*.pyc
# artifacts
.codex-loop/
# Local agent instructions
AGENTS.md
codex-loop.sh