From 71bd5988a52f77db57bfc69afe2e6cf165d8df74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Fri, 15 Aug 2025 10:47:19 +0200 Subject: [PATCH] Clean up .gitignore Add comments for documenting the entries. Remove IDE hidden folders, they should be ignored globally on the system, not per-project. --- .gitignore | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index d7fa72c3..fcafaf2c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,15 +1,19 @@ -target/ -build/ +# Common build directory names _build/ +build/ builddir/ -build-aux/app + +# Cargo +target/ + +# Flatpak .flatpak-builder -src/config.rs -*.ui.in~ -*.ui~ .flatpak -subprojects/libadwaita -subprojects/gtksourceview -.vscode .fenv -.zed + +# Temporary files +*.ui.in~ +*.ui~ + +# Dynamically-generated file +src/config.rs