-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path.gitignore
More file actions
127 lines (116 loc) · 3.19 KB
/
Copy path.gitignore
File metadata and controls
127 lines (116 loc) · 3.19 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.claude
rpaheui
.hg
.svn
# VIM
*.swp
*.swo
# macOS. The LLBC fingerprint enumerates untracked sources, so a Finder visit
# to a crate's src/ would otherwise drop a .DS_Store into the digest.
.DS_Store
*.pyc
*.pyo
*~
__pycache__/
*.hypothesis/
bin/pypy-c
include/*.h
include/numpy/
include/_numpypy/
lib_pypy/ctypes_config_cache/_[^_]*_*.py
libpypy*-c.*
pypy-c
pypy/_cache
pypy/doc/*.html
pypy/doc/config/*.html
pypy/doc/discussion/*.html
pypy/module/cpyext/src/*.o
pypy/module/cpyext/test/*.o
pypy/module/test_lib_pypy/ctypes_tests/*.o
pypy/goal/pypy-c
pypy/goal/pypy*.exe
pypy/goal/target*-c
pypy/goal/*.dll
release/
!pypy/tool/release/
rpython/_cache/
.cache/
.hypothesis
lib_pypy/_audioop_cffi*
lib_pypy/_curses_cffi*
lib_pypy/_gdbm_cffi*
lib_pypy/_lzma_cffi*
lib_pypy/_posixshmem_cffi*
lib_pypy/_pwdgrp_cffi*
lib_pypy/_pypy_openssl*
lib_pypy/_pypy_util_cffi_inner*
lib_pypy/_resource_cffi*
lib_pypy/_sqlite3_cffi*
lib_pypy/_syslog_cffi*
lib_pypy/_tkinter/tklib_cffi*
lib_pypy/_sha3/_sha3_cffi*
lib_pypy/_blake2/_blake2*_cffi*
lib_pypy/_blake2/impl/*.o
lib_pypy/_*test*.pypy*.so
lib-python/3/_test*.pyre*.so
lib_pypy/_ctypes/_ctypes_cffi*
rpython/rlib/rvmprof/src/shared/libbacktrace/config.h
rpython/rlib/test/_hacked_rbigint.py
include/pypy*
lib/pypy*
lib/pyre*
pybuilddir.txt
pypy/doc/config/*.rst
pypy/doc/config/*.txt
pypy/doc/_build
site-packages/pip*
site-packages/setuptools*
site-packages/pkg_resources*
site-packages/easy_install.py
lib-python/3/site-packages/pip*
lib-python/3/site-packages/setuptools*
lib-python/3/site-packages/pkg_resources*
lib-python/3/site-packages/easy_install.py
bin/pip*
bin/easy_install*
# `lib-python/3/test/data/README` calls the directory a destination for
# temporary files the tests create, so everything but that README is one.
# The `*.txt` this replaces matched only the lowercase half on a
# case-sensitive filesystem -- the `test_codecmaps_*` downloads are spelled
# `BIG5.TXT`, `CP932.TXT` and so on -- and nothing at all matched
# `gb-18030-2000.xml`.
lib-python/3/test/data/*
!lib-python/3/test/data/README
venv/*
benchmark/*
benchmarks/*
# Build output binaries
pyre-cranelift
pyre-dynasm
# Rust / Cargo
/target
# `tools/ubuntu24-*-repro` bind-mounts the worktree, so the container's builds
# need their own CARGO_TARGET_DIR or they overwrite the host binaries.
/target-linux
# rust-analyzer's own target directory, which it places beside whichever
# manifest it checks rather than at the workspace root. These land inside the
# LLBC fingerprint closure, where their lock and timestamp files move the
# source digest on every flycheck run.
target-ra/
/dist-assets/
# Build artefacts: Charon binary fetched via scripts/install-charon.py
/build/
# Local Claude settings (personal, not committed)
.claude/settings.local.json
.claude/stop-hook.sh
docs/superpowers
aheui/
CLAUDE.md
# Personal planning docs (not committed)
# Scratch probes, profiles and baseline binaries (not committed)
/scratchpad/
# The scratch files `lib-python/3/test` writes into the working directory
# (`test.support.TESTFN` is `@test_<pid>_tmp<suffix>`), left behind whenever a
# run dies before its `tearDown`. Unanchored: the working directory is
# wherever the run was started from, not necessarily the repo root.
@test_*_tmp*