From 60b26ca16f1bcc23fce1aa367e8790099e0e9a2b Mon Sep 17 00:00:00 2001 From: Alexander Tarasov Date: Wed, 19 Nov 2025 06:16:48 +0300 Subject: [PATCH] update gitignore update .gitignore --- .gitignore | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 78 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1c221f9..c677eef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,78 @@ -/target -/.idea -.DS_Store \ No newline at end of file +# macOS +.DS_Store +.localized + +# Build artifacts +build/ +cmake-build-*/ +CMakeCache.txt +CMakeFiles/ +Makefile +cmake_install.cmake +*.o +*.a +*.so +*.dylib +*.exe +*.bin +*.out +*.obj +*.lib +*.dll +*.exp +*.ilk +*.pdb +*.idb +*.sbr +*.res +*.pch +*.ipch +*.aps +*.bsc +*.ncb +*.suo +*.user +*.vcproj.user +*.sdf +*.opensdf +*.tlog +*.log +*.manifest +*.lastbuildstate +*.filters +*.vcxproj +*.vcxproj.filters +*.sln +*.suo +*.user +*.bak +*.tmp +*.swp +*.swo +*.orig +*.rej +*.gch +*.gcno +*.gcda +*.gcov +*.d + +# IDE and editor files +.vscode/ +.idea/ +*.iml +*.ipr +*.iws + +# Dependencies +/target/ + +# Test data +test/ + +# Binary +build_msp + +# Submodule specific ignores +# switch-tools/build/ +# switch-tools/cmake-build-*/ \ No newline at end of file