-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
91 lines (78 loc) · 2.46 KB
/
Copy path.gitignore
File metadata and controls
91 lines (78 loc) · 2.46 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# ── Python ────────────────────────────────────────────────────────────────────
__pycache__/
*.pyc
*.pyo
*.egg-info/
dist/
build/
*.egg
# ── C3 runtime data ──────────────────────────────────────────────────────────
.c3/
# ── Per-machine MCP wiring (regenerated by `c3 install-mcp`) ─────────────────
.mcp.json
# ── Legacy: replaced by pyproject.toml ───────────────────────────────────────
requirements.txt
# ── IDE / editor ──────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~
# ── Per-developer agent / IDE local config (not for distribution) ────────────
.claude/
.codex/
.gemini/
.neoB/
# ── Test cache ───────────────────────────────────────────────────────────────
.pytest_cache/
# ── Lint cache ───────────────────────────────────────────────────────────────
.ruff_cache/
# ── Ghost files ──────────────────────────────────────────────────────────────
# Shell metacharacter artifacts: created when Bash misinterprets Python type
# annotations (-> dict becomes > dict) or pip specifiers (>=3.0.0 becomes > =3.0.0)
# Python builtin type names (bare, no extension)
/dict
/str
/int
/float
/bool
/list
/set
/tuple
/bytes
/bytearray
/complex
/frozenset
/memoryview
/type
/object
/range
/slice
/property
/classmethod
/staticmethod
/super
/None
/True
/False
/Ellipsis
# Python typing module names
/Any
/Union
/Optional
/List
/Dict
/Set
/Tuple
/Callable
/Iterator
/Generator
/Sequence
/Mapping
# Partial type annotations (bracket fragments)
*\[*
# Shell redirect / pip version artifacts
/=*
# Temp benchmark files
_bench_*.txt
_fix_*.py