diff options
author | David Robillard <d@drobilla.net> | 2025-01-19 20:39:07 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-19 20:39:07 -0500 |
commit | f4240a9b27e98c40138c6ec866132b237f311dff (patch) | |
tree | e4b392f11a776ef39a381d62d468dcb61b01e199 | |
parent | 171f11701dd5813c8278cfc9fb72e2dfa0d54dab (diff) | |
download | suil-f4240a9b27e98c40138c6ec866132b237f311dff.tar.gz suil-f4240a9b27e98c40138c6ec866132b237f311dff.tar.bz2 suil-f4240a9b27e98c40138c6ec866132b237f311dff.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 2017-2022 David Robillard <d@drobilla.net> +# Copyright 2017-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__/ |