From 3f531ae27fd17e4d1b3097c83420b40720baf943 Mon Sep 17 00:00:00 2001 From: Arne Wischer Date: Wed, 19 Oct 2022 23:41:43 +0200 Subject: [PATCH] improve gitignore --- .gitignore | 48 ++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 44 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 1607f42..a51fc12 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,45 @@ -# Ignore Gradle project-specific cache directory +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets + +# Local History for Visual Studio Code +.history/ + +# Built Visual Studio Code Extensions +*.vsix + +### VisualStudioCode Patch ### +# Ignore all local history of files +.history +.ionide + +### Gradle ### .gradle -.vscode -# Ignore Gradle build output directory -build +**/build/ +!src/**/build/ + +# Ignore Gradle GUI config +gradle-app.setting + +# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) +!gradle-wrapper.jar + +# Avoid ignore Gradle wrappper properties +!gradle-wrapper.properties + +# Cache of project +.gradletasknamecache + +# Eclipse Gradle plugin generated files +# Eclipse Core +.project +# JDT-specific (Eclipse Java Development Tools) +.classpath + +### Gradle Patch ### +# Java heap dump +*.hprof \ No newline at end of file