OILS / .gitignore View on Github | oils.pub

70 lines, 58 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_debian_chroot/
37_debian_build/
38_chroot/
39_devbuild/
40_gen
41_release/
42_soil-jobs/
43_test/
44_tmp/
45!opy/_regtest/src/_devbuild/
46
47# TODO: should get rid of these in favor of wedges
48_cache/
49_deps/
50
51# Our Python extensions. We need these at the top level to statically link
52# "import libc" in the "OVM tarball".
53fanos.so
54fastfunc.so
55fastlex.so
56libc.so
57line_input.so
58posix_.so
59yajl.so
60
61# my own stuff
62local.sh
63NOTES*.txt
64TODO*.txt
65zulip-env.sh
66
67# node.js for SQL formatter
68package-lock.json
69package.json
70node_modules/