##// END OF EJS Templates
hgignore: ignore generated pytype stubs...
Augie Fackler -
r43772:8492c629 default
parent child Browse files
Show More
@@ -1,70 +1,71 b''
1 1 syntax: glob
2 2
3 3 *.elc
4 4 *.tmp
5 5 *.orig
6 6 *.rej
7 7 *~
8 8 *.mergebackup
9 9 *.o
10 10 *.so
11 11 *.dll
12 12 *.exe
13 13 *.pyd
14 14 *.pyc
15 15 *.pyo
16 16 *$py.class
17 17 *.swp
18 18 *.prof
19 19 *.zip
20 20 \#*\#
21 21 .\#*
22 22 tests/artifacts/cache/big-file-churn.hg
23 23 tests/.coverage*
24 24 tests/.testtimes*
25 25 tests/.hypothesis
26 26 tests/hypothesis-generated
27 27 tests/annotated
28 28 tests/exceptions
29 29 tests/*.err
30 30 tests/htmlcov
31 31 build
32 32 contrib/chg/chg
33 33 contrib/hgsh/hgsh
34 34 contrib/vagrant/.vagrant
35 35 dist
36 36 packages
37 37 doc/common.txt
38 38 doc/*.[0-9]
39 39 doc/*.[0-9].txt
40 40 doc/*.[0-9].gendoc.txt
41 41 doc/*.[0-9].{x,ht}ml
42 42 MANIFEST
43 43 MANIFEST.in
44 44 patches
45 45 mercurial/__modulepolicy__.py
46 46 mercurial/__version__.py
47 47 mercurial/hgpythonlib.h
48 48 mercurial.egg-info
49 49 .DS_Store
50 50 tags
51 51 cscope.*
52 52 .idea/*
53 53 .asv/*
54 .pytype/*
54 55 i18n/hg.pot
55 56 locale/*/LC_MESSAGES/hg.mo
56 57 hgext/__index__.py
57 58
58 59 rust/target/
59 60 rust/*/target/
60 61
61 62 # Generated wheels
62 63 wheelhouse/
63 64
64 65 syntax: regexp
65 66 ^\.pc/
66 67 ^\.(pydev)?project
67 68
68 69 # hackable windows distribution additions
69 70 ^hg-python
70 71 ^hg.py$
General Comments 0
You need to be logged in to leave comments. Login now