OILS / .gitignore View on Github | oils.pub

69 lines, 57 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_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".
52fanos.so
53fastfunc.so
54fastlex.so
55libc.so
56line_input.so
57posix_.so
58yajl.so
59
60# my own stuff
61local.sh
62NOTES*.txt
63TODO*.txt
64zulip-env.sh
65
66# node.js for SQL formatter
67package-lock.json
68package.json
69node_modules/