forked from amberwhitehead/ferray
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
82 lines (69 loc) · 1.9 KB
/
Copy path.gitignore
File metadata and controls
82 lines (69 loc) · 1.9 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
# === Rust ===
target/
**/*.rs.bk
# === Python ===
__pycache__/
*.pyc
*.pyo
*.pyd
.Python
*.egg-info/
dist/
build/
*.egg
# === Maturin / PyO3 compiled extension (build artifact, never commit) ===
*.so
ferray-python/python/ferray/_ferray.*.so
# === Coverage output (regenerated) ===
coverage/
# === CI workflow held untracked (not ready; was committed by accident) ===
# Re-add deliberately with `git add -f` when the wheel build is finished.
.github/workflows/ferray-python-wheels.yml
# === IDE / Editor ===
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# === Git worktrees ===
.worktrees/
# === Fuzz artifacts ===
fuzz/corpus/
fuzz/artifacts/
# === Benchmark results (regenerated) ===
benchmarks/speed_results.json
# === Crosslink subcrate state (never publish) ===
*/.crosslink/
# === Crosslink managed (do not edit between markers) ===
# .crosslink/ — machine-local state (never commit)
.crosslink/issues.db
.crosslink/issues.db-wal
.crosslink/issues.db-shm
.crosslink/agent.json
.crosslink/session.json
.crosslink/daemon.pid
.crosslink/daemon.log
.crosslink/last_test_run
.crosslink/.active-issue
.crosslink/keys/
.crosslink/.hub-cache/
.crosslink/.knowledge-cache/
.crosslink/.cache/
.crosslink/init-manifest.json
.crosslink/init-manifest.json.tmp
.crosslink/hook-config.local.json
.crosslink/integrations/
.crosslink/rules.local/
# .crosslink/ — DO track these (project-level policy):
# .crosslink/hook-config.json — shared team configuration
# .crosslink/rules/ — project coding standards
# .crosslink/.gitignore — inner gitignore for agent files
# .claude/ — auto-generated by crosslink init (not project source)
.claude/hooks/
.claude/commands/
.claude/mcp/
# .claude/ — DO track these (if manually configured):
# .claude/settings.json — Claude Code project settings
# .claude/settings.local.json is per-developer, ignore separately if needed
# === End crosslink managed ===