From c617e9ae3baa6d5e5669692cd384a032ffacd3ce Mon Sep 17 00:00:00 2001 From: Stefan Date: Sun, 3 May 2026 02:10:31 +0200 Subject: [PATCH] Update .gitignore for broader dev and build artifact coverage Expanded .gitignore to exclude Playwright outputs, Node.js folders, NuGet packages, log files, and additional Visual Studio/project-specific directories. Improved formatting for clarity and maintainability. --- .gitignore | 34 +++++++++++++++++++++------------- Fuchs/.gitignore | 15 --------------- 2 files changed, 21 insertions(+), 28 deletions(-) delete mode 100644 Fuchs/.gitignore diff --git a/.gitignore b/.gitignore index 7a6c369..ad90e1b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,27 @@ +# Visual Studio +.vs/ +*.user +*.suo + +# Build Output +bin/ +obj/ + +# NuGet +packages/ +*.nupkg + +# Node +node_modules/ +dist/ +.npm/ + +# Logs +*.log # Playwright -node_modules/ /test-results/ /playwright-report/ /blob-report/ /playwright/.cache/ -/playwright/.auth/ -/.vs/CopilotSnapshots -/.vs/Fuchs_Intranet.slnx/copilot-chat/1e6f4c46/sessions -/.vs -/Fuchs.Tests/bin/Debug/net10.0 -/Fuchs.Tests/obj -/Fuchs_DataService/.vs -/Fuchs_DataService/bin/Debug/net10.0 -/Fuchs_DataService/obj -/MFR_RESTClient/.vs -/MFR_RESTClient/bin/Debug/net10.0 -/MFR_RESTClient/obj +/playwright/.auth/ \ No newline at end of file diff --git a/Fuchs/.gitignore b/Fuchs/.gitignore deleted file mode 100644 index 693d394..0000000 --- a/Fuchs/.gitignore +++ /dev/null @@ -1,15 +0,0 @@ -# Visual Studio -.vs/ -*.user -*.suo - -# Build Output -bin/ -obj/ - -# NuGet -packages/ -*.nupkg - -# Logs -*.log \ No newline at end of file