Skip to content

Commit 07846e4

Browse files
committed
chore(git): .gitignore IDE-specific excludes for JetBrains and VS Code
1 parent 17f195a commit 07846e4

File tree

1 file changed

+137
-9
lines changed

1 file changed

+137
-9
lines changed

.gitignore

Lines changed: 137 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
1-
# Jekyll-specific excludes
2-
# as defined in: XXXhttps://github.com/github/gitignore/blob/main/Jekyll.gitignore
1+
###################
2+
# Manual Excludes #
3+
###################
4+
5+
# hier könnte Ihre Werbung stehen
6+
7+
8+
##########
9+
# Jekyll #
10+
##########
11+
# https://github.com/github/gitignore/blob/main/Jekyll.gitignore
12+
313
_site/
414
.sass-cache/
515
.jekyll-cache/
@@ -10,8 +20,102 @@ vendor/
1020

1121

1222

13-
# Linux-specific excludes
14-
# as defined in: https://github.com/github/gitignore/blob/main/Global/Linux.gitignore
23+
#############
24+
# JetBrains #
25+
#############
26+
# https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
27+
28+
# Covers JetBrains IDEs: IntelliJ, GoLand, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
29+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
30+
31+
# User-specific stuff
32+
.idea/**/workspace.xml
33+
.idea/**/tasks.xml
34+
.idea/**/usage.statistics.xml
35+
.idea/**/dictionaries
36+
.idea/**/shelf
37+
38+
# AWS User-specific
39+
.idea/**/aws.xml
40+
41+
# Generated files
42+
.idea/**/contentModel.xml
43+
44+
# Sensitive or high-churn files
45+
.idea/**/dataSources/
46+
.idea/**/dataSources.ids
47+
.idea/**/dataSources.local.xml
48+
.idea/**/sqlDataSources.xml
49+
.idea/**/dynamic.xml
50+
.idea/**/uiDesigner.xml
51+
.idea/**/dbnavigator.xml
52+
53+
# Gradle
54+
.idea/**/gradle.xml
55+
.idea/**/libraries
56+
57+
# Gradle and Maven with auto-import
58+
# When using Gradle or Maven with auto-import, you should exclude module files,
59+
# since they will be recreated, and may cause churn. Uncomment if using
60+
# auto-import.
61+
# .idea/artifacts
62+
# .idea/compiler.xml
63+
# .idea/jarRepositories.xml
64+
# .idea/modules.xml
65+
# .idea/*.iml
66+
# .idea/modules
67+
# *.iml
68+
# *.ipr
69+
70+
# CMake
71+
cmake-build-*/
72+
73+
# Mongo Explorer plugin
74+
.idea/**/mongoSettings.xml
75+
76+
# File-based project format
77+
*.iws
78+
79+
# IntelliJ
80+
out/
81+
82+
# mpeltonen/sbt-idea plugin
83+
.idea_modules/
84+
85+
# JIRA plugin
86+
atlassian-ide-plugin.xml
87+
88+
# Cursive Clojure plugin
89+
.idea/replstate.xml
90+
91+
# SonarLint plugin
92+
.idea/sonarlint/
93+
.idea/sonarlint.xml # see https://community.sonarsource.com/t/is-the-file-idea-idea-idea-sonarlint-xml-intended-to-be-under-source-control/121119
94+
95+
# Crashlytics plugin (for Android Studio and IntelliJ)
96+
com_crashlytics_export_strings.xml
97+
crashlytics.properties
98+
crashlytics-build.properties
99+
fabric.properties
100+
101+
# Editor-based HTTP Client
102+
.idea/httpRequests
103+
http-client.private.env.json
104+
105+
# Android studio 3.1+ serialized cache file
106+
.idea/caches/build_file_checksums.ser
107+
108+
# Apifox Helper cache
109+
.idea/.cache/.Apifox_Helper
110+
.idea/ApifoxUploaderProjectSetting.xml
111+
112+
113+
114+
#########
115+
# Linux #
116+
#########
117+
# https://github.com/github/gitignore/blob/main/Global/Linux.gitignore
118+
15119
*~
16120

17121
# temporary files which can be created if a process still has a handle open of a deleted file
@@ -28,8 +132,11 @@ vendor/
28132

29133

30134

31-
# macOS-specific excludes
32-
# as defined in: https://github.com/github/gitignore/blob/main/Global/macOS.gitignore
135+
#########
136+
# macOS #
137+
#########
138+
# https://github.com/github/gitignore/blob/main/Global/macOS.gitignore
139+
33140
# General
34141
.DS_Store
35142
.AppleDouble
@@ -59,8 +166,29 @@ Temporary Items
59166

60167

61168

62-
# Windows-specific excludes
63-
# as defined in: https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
169+
###########
170+
# VS Code #
171+
###########
172+
# https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
173+
174+
.vscode/*
175+
!.vscode/settings.json
176+
!.vscode/tasks.json
177+
!.vscode/launch.json
178+
!.vscode/extensions.json
179+
!.vscode/*.code-snippets
180+
!*.code-workspace
181+
182+
# Built Visual Studio Code Extensions
183+
*.vsix
184+
185+
186+
187+
###########
188+
# Windows #
189+
###########
190+
# https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
191+
64192
# Windows thumbnail cache files
65193
Thumbs.db
66194
Thumbs.db:encryptable
@@ -84,4 +212,4 @@ $RECYCLE.BIN/
84212
*.msp
85213

86214
# Windows shortcuts
87-
*.lnk
215+
*.lnk

0 commit comments

Comments
 (0)