mirror of
https://github.com/marceloprates/prettymaps.git
synced 2026-09-26 09:11:55 +02:00
tests/test.py:28 (test_create_and_read_preset) calls
prettymaps.create_preset('pytest-temp-preset', ...) and writes a
real JSON file into prettymaps/presets/pytest-temp-preset.json,
which then shows up as untracked in 'git status' after running
pytest. Add a one-line gitignore rule next to the existing
prettymaps/presets/my-preset.json entry so contributors running
the test suite locally don't see a stray untracked file.
59 lines
759 B
Plaintext
59 lines
759 B
Plaintext
# Byte-compiled / optimized / DLL files
|
|
*.py[cod]
|
|
__pycache__/
|
|
|
|
# Distribution / packaging
|
|
*.egg-info/
|
|
build/
|
|
dist/
|
|
prettymaps.egg-info/
|
|
|
|
# Caches and logs
|
|
cache/
|
|
outputs/
|
|
.DS_Store
|
|
*.log
|
|
*.bak
|
|
*.dat
|
|
*.sqlite
|
|
|
|
# Data
|
|
/data/
|
|
|
|
# Ignore all notebooks except the tutorial
|
|
notebooks/*
|
|
!notebooks/tutorial.py
|
|
!notebooks/tutorial.md
|
|
|
|
# Exclude etc folder
|
|
etc/
|
|
|
|
# Documentation images and archives
|
|
/docs/images/
|
|
/docs/archive/
|
|
|
|
# Ignore SRTM1 data
|
|
SRTM1/
|
|
|
|
# Ignore OS and editor files
|
|
*.swp
|
|
*~
|
|
.vscode/
|
|
|
|
# Ignore test and temp files
|
|
*.tmp
|
|
*.tmp.png
|
|
prettymaps/presets/my-preset.json
|
|
prettymaps/presets/pytest-temp-preset.json
|
|
|
|
# Local-only agent guardrails (not committed)
|
|
AGENTS.md
|
|
.venv/
|
|
# Marimo caches
|
|
__marimo__/
|
|
*.marimo
|
|
|
|
# Lesson agent guardrails
|
|
.ralph/
|
|
.pi/
|