Skip to content
This repository was archived by the owner on Mar 20, 2021. It is now read-only.

Commit 7e258d6

Browse files
committed
Added intelliJ files to gitignore
1 parent fbe6eb3 commit 7e258d6

File tree

1 file changed

+91
-8
lines changed

1 file changed

+91
-8
lines changed

.gitignore

+91-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Created by https://www.gitignore.io/api/c++,java,linux,macos,gradle,windows,visualstudiocode
1+
2+
# Created by https://www.gitignore.io/api/c++,java,linux,macos,gradle,windows,intellij+all,visualstudiocode
3+
# Edit at https://www.gitignore.io/?templates=c++,java,linux,macos,gradle,windows,intellij+all,visualstudiocode
24

35
### C++ ###
46
# Prerequisites
@@ -34,6 +36,87 @@
3436
*.out
3537
*.app
3638

39+
### Intellij+all ###
40+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
41+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
42+
43+
# User-specific stuff
44+
.idea/**/workspace.xml
45+
.idea/**/tasks.xml
46+
.idea/**/usage.statistics.xml
47+
.idea/**/dictionaries
48+
.idea/**/shelf
49+
50+
# Generated files
51+
.idea/**/contentModel.xml
52+
53+
# Sensitive or high-churn files
54+
.idea/**/dataSources/
55+
.idea/**/dataSources.ids
56+
.idea/**/dataSources.local.xml
57+
.idea/**/sqlDataSources.xml
58+
.idea/**/dynamic.xml
59+
.idea/**/uiDesigner.xml
60+
.idea/**/dbnavigator.xml
61+
62+
# Gradle
63+
.idea/**/gradle.xml
64+
.idea/**/libraries
65+
66+
# Gradle and Maven with auto-import
67+
# When using Gradle or Maven with auto-import, you should exclude module files,
68+
# since they will be recreated, and may cause churn. Uncomment if using
69+
# auto-import.
70+
# .idea/modules.xml
71+
# .idea/*.iml
72+
# .idea/modules
73+
74+
# CMake
75+
cmake-build-*/
76+
77+
# Mongo Explorer plugin
78+
.idea/**/mongoSettings.xml
79+
80+
# File-based project format
81+
*.iws
82+
83+
# IntelliJ
84+
out/
85+
86+
# mpeltonen/sbt-idea plugin
87+
.idea_modules/
88+
89+
# JIRA plugin
90+
atlassian-ide-plugin.xml
91+
92+
# Cursive Clojure plugin
93+
.idea/replstate.xml
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 Rest Client
102+
.idea/httpRequests
103+
104+
# Android studio 3.1+ serialized cache file
105+
.idea/caches/build_file_checksums.ser
106+
107+
### Intellij+all Patch ###
108+
# Ignores the whole .idea folder and all .iml files
109+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
110+
111+
.idea/
112+
113+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
114+
115+
*.iml
116+
modules.xml
117+
.idea/misc.xml
118+
*.ipr
119+
37120
### Java ###
38121
# Compiled class file
39122
*.class
@@ -109,6 +192,10 @@ Temporary Items
109192
!.vscode/launch.json
110193
!.vscode/extensions.json
111194

195+
### VisualStudioCode Patch ###
196+
# Ignore all local history of files
197+
.history
198+
112199
### Windows ###
113200
# Windows thumbnail cache files
114201
Thumbs.db
@@ -150,11 +237,7 @@ gradle-app.setting
150237
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
151238
# gradle/wrapper/gradle-wrapper.properties
152239

153-
# # VS Code Specific Java Settings
154-
.classpath
155-
.project
156-
.settings/
157-
bin/
158-
240+
### Gradle Patch ###
241+
**/build/
159242

160-
# End of https://www.gitignore.io/api/c++,java,linux,macos,gradle,windows,visualstudiocode
243+
# End of https://www.gitignore.io/api/c++,java,linux,macos,gradle,windows,intellij+all,visualstudiocode

0 commit comments

Comments
 (0)