diff options
author | David Robillard <d@drobilla.net> | 2025-01-19 20:44:13 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-19 20:44:13 -0500 |
commit | 14a10c216714f840e2164e8e6f253388192a3273 (patch) | |
tree | 2cd88d4ee5a12cde0c63da08c80e96246743c57f | |
parent | e3560369c4b61b279607c6fc58dead09ec74a2e1 (diff) | |
download | sratom-14a10c216714f840e2164e8e6f253388192a3273.tar.gz sratom-14a10c216714f840e2164e8e6f253388192a3273.tar.bz2 sratom-14a10c216714f840e2164e8e6f253388192a3273.zip |
Clean up 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 2019-2022 David Robillard <d@drobilla.net> +# Copyright 2019-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__/ |