.hgignore

Fri, 16 Jan 2015 18:13:44 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 18:13:44 +0100
branch
TOR_BUG_9701
changeset 14
925c144e1f1f
child 6
8bccb770b82d
permissions
-rw-r--r--

Integrate suggestion from review to improve consistency with existing code.

     1 # .hgignore - List of filenames hg should ignore
     3 # Filenames that should be ignored wherever they appear
     4 ~$
     5 \.py(c|o)$
     6 (?i)(^|/)TAGS$
     7 (^|/)ID$
     8 (^|/)\.DS_Store$
    10 # Vim swap files.
    11 ^\.sw.$
    12 .[^/]*\.sw.$
    14 # User files that may appear at the root
    15 ^\.mozconfig
    16 ^mozconfig*
    17 ^configure$
    18 ^config\.cache$
    19 ^config\.log$
    20 ^\.clang_complete
    21 ^mach.ini$
    23 # Empty marker file that's generated when we check out NSS
    24 ^security/manager/\.nss\.checkout$
    26 # Build directories
    27 ^obj
    29 # Build directories for js shell
    30 _DBG\.OBJ/
    31 _OPT\.OBJ/
    33 # SpiderMonkey configury
    34 ^js/src/configure$
    35 ^js/src/autom4te.cache$
    36 # SpiderMonkey test result logs
    37 ^js/src/tests/results-.*\.(html|txt)$
    39 # Java HTML5 parser classes
    40 ^parser/html/java/(html|java)parser/
    42 # SVN directories
    43 \.svn/
    45 # Ignore the files and directory that Eclipse IDE creates
    46 \.project$
    47 \.cproject$
    48 \.settings/
    50 # Ignore the directory that JetBrains IDEs create
    51 \.idea/
    53 # Python stuff installed at build time.
    54 ^python/psutil/.*\.so
    55 ^python/psutil/.*\.pyd
    56 ^python/psutil/build/
    58 # Git repositories
    59 .git/
    61 # Ignore chrome.manifest files from the devtools loader
    62 ^browser/devtools/chrome.manifest$
    63 ^toolkit/devtools/chrome.manifest$

mercurial