-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
49 lines (40 loc) · 875 Bytes
/
Copy path.gitignore
File metadata and controls
49 lines (40 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Virtual envs
.venv/
venv/
env/
# Editor
.vscode/
.idea/
*.swp
# OS
.DS_Store
Thumbs.db
# Local dev artefacts
*.log
.env
.env.local
# Slice scratch data — local KG dumps from CLI runs
scratch_kg/
*.kg.json
# DXF dryrun output (per-run artefact ; the committed reference is
# tests/fixtures/*/golden.json).
tests/fixtures/*/dryrun_output.json
# Claude Code local settings (per-user permissions)
.claude/settings.local.json
# graphify generated outputs (regenerated by post-commit hook + /graphify).
# The .mcp.json in this repo expects graphify-out/graph.json at the root —
# run `python -m graphify cli` or click any pushbutton after clone to seed it.
graphify-out/
**/graphify-out/
# graphify ad-hoc helper scripts
.graphify_*.py
.graphify_*.json
.graphify_python