source: .gitignore

Last change on this file was 036e9f8, checked in by GitHub <noreply@github.com>, 4 years ago

Fix regex

The hyphen should be the last (or first) item in the character class to prevent it being interpreted as a range indicator

  • Property mode set to 100644
File size: 654 bytes
RevLine 
[1dd137b]1*.pyc
2*.~[0-9]~
3*.swp
4
5# gcov generated files
6*.gcno
7*.gcda
[00d6c85]8python/lib/aubio/_aubio.*.so
9.coverage
[1dd137b]10
11# ignore compiled examples
12RE:examples/[a-z]*
13
14# ignore compiled test programs
[036e9f8]15RE:tests/src/test-[a-z_-]*$
16RE:tests/cpp/test-[a-z_-]*$
[1dd137b]17
18# only sgml manpages count
19doc/*.1
20
21# cachegrind/callgrind stuff
22**/cachegrind.out.[0-9]*
23**/callgrind.out.[0-9]*
24
25# waf stuff
[f8ee337]26.lock-waf*
27.waf-*
[8e94af5]28waf
29waflib
[1dd137b]30build/
31
[a5bf9a5]32# doxygen
[fc95aaf]33doc/web/
34doc/full/
[2470240]35doc/_build/
[320ce80]36
[90a8f2f]37python/gen
38python/dist
39python/MANIFEST
[320ce80]40python/*.db
[90a8f2f]41python/*.wav
[b4d1ba1]42
[9189c42]43pip-delete-this-directory.txt
44
[b4d1ba1]45aubio-*.tar.bz2
[6497e78]46aubio-*.zip
[bef7726]47dist/*.tar.gz
[28c473e]48dist/*.whl
[3122327]49
50# test sounds
51python/tests/sounds
[0065c6a]52aubio.egg-info
[00ccf47]53.eggs
54.cache
Note: See TracBrowser for help on using the repository browser.