OILS / .gitignore View on Github | oils.pub

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