# HG changeset patch # User Raphaël Gomès # Date 1641565217 -3600 # Node ID ba316ce1504052c85336c69b3adc9a9b7020d905 # Parent 1b57516a9a56229bb46062ce7a479dc8f6741edd hgignore: rewrite using globs, rootglobs ...and adding useful patterns from upstream hg. diff -r 1b57516a9a56 -r ba316ce15040 .hgignore --- a/.hgignore Fri Jan 07 12:26:53 2022 +0100 +++ b/.hgignore Fri Jan 07 15:20:17 2022 +0100 @@ -1,24 +1,30 @@ -syntax: re -/figures/[^/]+\.png$ -^html/ -\.pyc$ -~$ -\.swp$ -\.orig$ -\.rej$ -^tests/.*\.err$ -^tests/easy_run.sh$ -^build/ -^dist/ -^MANIFEST$ -^docs/tutorials/.*\.rst$ -\.ico$ -tests/\.testtimes +syntax: glob +*.py[cdo] +*~ +*.swp +*.orig +*.rej +*.egg-info -^docs/training/graphs/ -^docs/training/html/ -^docs/training/index.html -^docs/training/graphviz-images/ -^docs/training/img/ -^docs/training/output/ -^docs/training/pandocfilters/ +syntax: rootglob +.idea/ +.mypy_cache/ +.pytype/ +.vscode/ +html/ +build/ +dist/ +MANIFEST +tests/easy_run.sh +tests/*.err +tests/.testtimes* +docs/training/graphs/ +docs/training/html/ +docs/training/index.html +docs/training/graphviz-images/ +docs/training/img/ +docs/training/output/ +docs/training/pandocfilters/ +docs/tutorials/**.rst +docs/figures/**.png +docs/static/**.ico