From 569f46f1598c749063277967bf2994a7152aad6d Mon Sep 17 00:00:00 2001 From: Martin Kysel Date: Wed, 14 Aug 2024 09:34:45 -0600 Subject: [PATCH] Add .gitignore and .idea folder for GoLand --- .gitignore | 18 +++++++++++++++++- .idea/.gitignore | 8 ++++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ .idea/xmtpd.iml | 9 +++++++++ 5 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/xmtpd.iml diff --git a/.gitignore b/.gitignore index 3b85664b..c10451f4 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,20 @@ bin/ # Dependency directories (remove the comment below to include it) # vendor/ -build/* \ No newline at end of file +build/* + +# Covers JetBrains IDEs: GoLand, IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 00000000..13566b81 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 00000000..6eddcd5a --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..35eb1ddf --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/xmtpd.iml b/.idea/xmtpd.iml new file mode 100644 index 00000000..5e764c4f --- /dev/null +++ b/.idea/xmtpd.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file