annotate .boring @ 1407:f766f82b8513

checkpoint show data Ignore-this: 55fda887863be2f89db5a7db88404f41
author drewp@bigasterisk.com
date Mon, 15 Jun 2015 22:34:59 +0000
parents 233b81d9bd9d
children 185f3e2208c3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1297
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
1 # This file contains a list of extended regular expressions, one per
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
2 # line. A file path matching any of these expressions will be filtered
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
3 # out during `darcs add', or when the `--look-for-adds' flag is passed
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
4 # to `darcs whatsnew' and `record'. The entries in ~/.darcs/boring (if
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
5 # it exists) supplement those in this file.
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
6 #
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
7 # Blank lines, and lines beginning with an octothorpe (#) are ignored.
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
8 # See regex(7) for a description of extended regular expressions.
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
9
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
10 ### compiler and interpreter intermediate files
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
11 # haskell (ghc) interfaces
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
12 \.hi$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
13 \.hi-boot$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
14 \.o-boot$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
15 # object files
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
16 \.o$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
17 \.o\.cmd$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
18 # profiling haskell
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
19 \.p_hi$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
20 \.p_o$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
21 # haskell program coverage resp. profiling info
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
22 \.tix$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
23 \.prof$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
24 # fortran module files
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
25 \.mod$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
26 # linux kernel
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
27 \.ko\.cmd$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
28 \.mod\.c$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
29 (^|/)\.tmp_versions($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
30 # *.ko files aren't boring by default because they might
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
31 # be Korean translations rather than kernel modules
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
32 # \.ko$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
33 # python, emacs, java byte code
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
34 \.py[co]$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
35 \.elc$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
36 \.class$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
37 # objects and libraries; lo and la are libtool things
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
38 \.(obj|a|exe|so|lo|la)$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
39 # compiled zsh configuration files
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
40 \.zwc$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
41 # Common LISP output files for CLISP and CMUCL
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
42 \.(fas|fasl|sparcf|x86f)$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
43
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
44 ### build and packaging systems
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
45 # cabal intermediates
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
46 \.installed-pkg-config
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
47 \.setup-config
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
48 # standard cabal build dir, might not be boring for everybody
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
49 # ^dist(/|$)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
50 # autotools
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
51 (^|/)autom4te\.cache($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
52 (^|/)config\.(log|status)$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
53 # microsoft web expression, visual studio metadata directories
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
54 \_vti_cnf$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
55 \_vti_pvt$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
56 # gentoo tools
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
57 \.revdep-rebuild.*
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
58 # generated dependencies
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
59 ^\.depend$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
60
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
61 ### version control systems
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
62 # cvs
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
63 (^|/)CVS($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
64 \.cvsignore$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
65 # cvs, emacs locks
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
66 ^\.#
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
67 # rcs
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
68 (^|/)RCS($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
69 ,v$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
70 # subversion
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
71 (^|/)\.svn($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
72 # mercurial
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
73 (^|/)\.hg($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
74 # git
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
75 (^|/)\.git($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
76 # bzr
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
77 \.bzr$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
78 # sccs
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
79 (^|/)SCCS($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
80 # darcs
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
81 (^|/)_darcs($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
82 (^|/)\.darcsrepo($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
83 ^\.darcs-temp-mail$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
84 -darcs-backup[[:digit:]]+$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
85 # gnu arch
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
86 (^|/)(\+|,)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
87 (^|/)vssver\.scc$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
88 \.swp$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
89 (^|/)MT($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
90 (^|/)\{arch\}($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
91 (^|/).arch-ids($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
92 # bitkeeper
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
93 (^|/)BitKeeper($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
94 (^|/)ChangeSet($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
95
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
96 ### miscellaneous
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
97 # backup files
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
98 ~$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
99 \.bak$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
100 \.BAK$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
101 # patch originals and rejects
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
102 \.orig$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
103 \.rej$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
104 # X server
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
105 \..serverauth.*
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
106 # image spam
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
107 \#
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
108 (^|/)Thumbs\.db$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
109 # vi, emacs tags
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
110 (^|/)(tags|TAGS)$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
111 #(^|/)\.[^/]
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
112 # core dumps
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
113 (^|/|\.)core$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
114 # partial broken files (KIO copy operations)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
115 \.part$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
116 # waf files, see http://code.google.com/p/waf/
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
117 (^|/)\.waf-[[:digit:].]+-[[:digit:]]+($|/)
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
118 (^|/)\.lock-wscript$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
119 # mac os finder
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
120 (^|/)\.DS_Store$
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
121
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
122 ^\.installed.cfg
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
123 ^\.coverage
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
124 ^\.keyboardcomposer\.savedlevels
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
125 ^\.light9-window-geometry
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
126 ^_test_show
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
127 ^bin/ipython
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
128 ^bin/python
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
129 ^dmx_usb_module/.gitignore
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
130 ^dmx_usb_module/Module.symvers
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
131 ^dmx_usb_module/build/temp.linux-x86_64-2.7
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
132 ^dmx_usb_module/dmx.c
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
133 ^dmx_usb_module/dmx_usb.ko
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
134 ^dmx_usb_module/dmx_usb_test
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
135 ^dmx_usb_module/modules.order
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
136 ^env
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
137 ^env_pi
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
138 ^lib/python2.7
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
139 # keep bower.json nonboring
1318
0bda9a9282c2 more deps
Drew Perttula <drewp@bigasterisk.com>
parents: 1297
diff changeset
140 ^light9/web/lib/[acdefghijklmnopqrstuvwyzQN]
1297
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
141 ^show/dance20../music
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
142 ^show/dance201./sessions/?
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
143 ^show/dance2011
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
144 ^show/dance2012
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
145 ^show/dance2013/build
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
146 ^show/dance2014/build/?
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
147 ^show/dance2014/music
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
148 ^stagesim/three.js-master
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
149 ^tkdnd
1363
233b81d9bd9d simple first version of SyncedGraph.runHandler
Drew Perttula <drewp@bigasterisk.com>
parents: 1318
diff changeset
150 ^node_modules
1297
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
151
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
152 # temporary!
56badb040543 add _darcs/prefs/boring into repo
Drew Perttula <drewp@bigasterisk.com>
parents:
diff changeset
153 rgbled/build-nano328/