| 1 | # Vim
|
| 2 | *.swp
|
| 3 |
|
| 4 | # Emacs temp files
|
| 5 | *~
|
| 6 |
|
| 7 | # Python
|
| 8 | *.pyc
|
| 9 | __pycache__
|
| 10 | .mypy_cache/
|
| 11 | # Python build support
|
| 12 | build/temp.*
|
| 13 |
|
| 14 | # R
|
| 15 | .RData
|
| 16 | .Rhistory
|
| 17 | Rplots.pdf
|
| 18 |
|
| 19 | # Ninja
|
| 20 | build.ninja
|
| 21 | .ninja_*
|
| 22 |
|
| 23 | # GDB
|
| 24 | .gdbinit
|
| 25 |
|
| 26 | tags
|
| 27 | .vagrant
|
| 28 |
|
| 29 | # clangd
|
| 30 | /.cache/
|
| 31 | /compile_commands.json
|
| 32 |
|
| 33 | # Our own temp dirs
|
| 34 | _bin/
|
| 35 | _build/
|
| 36 | _regtest
|
| 37 | _chroot/
|
| 38 | _devbuild/
|
| 39 | _gen
|
| 40 | _release/
|
| 41 | _soil-jobs/
|
| 42 | _test/
|
| 43 | _tmp/
|
| 44 | !opy/_regtest/src/_devbuild/
|
| 45 |
|
| 46 | # TODO: should get rid of these in favor of wedges
|
| 47 | _cache/
|
| 48 | _deps/
|
| 49 |
|
| 50 | # Our Python extensions. We need these at the top level to statically link
|
| 51 | # "import libc" in the "OVM tarball".
|
| 52 | fanos.so
|
| 53 | fastfunc.so
|
| 54 | fastlex.so
|
| 55 | libc.so
|
| 56 | line_input.so
|
| 57 | posix_.so
|
| 58 | yajl.so
|
| 59 |
|
| 60 | # my own stuff
|
| 61 | local.sh
|
| 62 | NOTES*.txt
|
| 63 | TODO*.txt
|
| 64 | zulip-env.sh
|
| 65 |
|
| 66 | # node.js for SQL formatter
|
| 67 | package-lock.json
|
| 68 | package.json
|
| 69 | node_modules/
|