diff options
author | David Robillard <d@drobilla.net> | 2025-01-19 20:12:07 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-19 20:46:05 -0500 |
commit | de841cda8e85fac25f53c7e10ff76e0ef11175a8 (patch) | |
tree | e39be6d16cb34fd8fd6d72e16b39ad3769165e96 | |
parent | 977ff0e6a5d0a4d4615f7b9a6a0f0a30e46ffe33 (diff) | |
download | lilv-de841cda8e85fac25f53c7e10ff76e0ef11175a8.tar.gz lilv-de841cda8e85fac25f53c7e10ff76e0ef11175a8.tar.bz2 lilv-de841cda8e85fac25f53c7e10ff76e0ef11175a8.zip |
Clean up and update gitignore file
Strengthen patterns to match only relative to this directory where
possible (with a leading slash), and move those that match in any child to a
separate block.
-rw-r--r-- | .gitignore | 16 |
1 files changed, 9 insertions, 7 deletions
@@ -1,9 +1,11 @@ -# Copyright 2018-2022 David Robillard <d@drobilla.net> +# Copyright 2018-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC -.meson-subproject-wrap-hash.txt -__pycache__ -build/** -subprojects/packagecache/ -subprojects/sphinxygen-1.0.4/ -subprojects/sphinxygen/ +/.meson-subproject-wrap-hash.txt +/build/ +/subprojects/packagecache/ +/subprojects/sphinxygen-1.0.10/ +/subprojects/sphinxygen/ + +*.pyc +__pycache__/ |