Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ce44856

Browse filesBrowse files
author
rpytel1
committed
Add gitignore
0 parents  commit ce44856
Copy full SHA for ce44856

File tree

1 file changed

+186
-0
lines changed
Filter options

1 file changed

+186
-0
lines changed

‎.gitignore

Copy file name to clipboard
+186Lines changed: 186 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
1+
2+
# Created by https://www.gitignore.io/api/java,eclipse,intellij+all
3+
# Edit at https://www.gitignore.io/?templates=java,eclipse,intellij+all
4+
5+
### Eclipse ###
6+
7+
.metadata
8+
bin/
9+
tmp/
10+
*.tmp
11+
*.bak
12+
*.swp
13+
*~.nib
14+
local.properties
15+
.settings/
16+
.loadpath
17+
.recommenders
18+
19+
# External tool builders
20+
.externalToolBuilders/
21+
22+
# Locally stored "Eclipse launch configurations"
23+
*.launch
24+
25+
# PyDev specific (Python IDE for Eclipse)
26+
*.pydevproject
27+
28+
# CDT-specific (C/C++ Development Tooling)
29+
.cproject
30+
31+
# CDT- autotools
32+
.autotools
33+
34+
# Java annotation processor (APT)
35+
.factorypath
36+
37+
# PDT-specific (PHP Development Tools)
38+
.buildpath
39+
40+
# sbteclipse plugin
41+
.target
42+
43+
# Tern plugin
44+
.tern-project
45+
46+
# TeXlipse plugin
47+
.texlipse
48+
49+
# STS (Spring Tool Suite)
50+
.springBeans
51+
52+
# Code Recommenders
53+
.recommenders/
54+
55+
# Annotation Processing
56+
.apt_generated/
57+
58+
# Scala IDE specific (Scala & Java development for Eclipse)
59+
.cache-main
60+
.scala_dependencies
61+
.worksheet
62+
63+
### Eclipse Patch ###
64+
# Eclipse Core
65+
.project
66+
67+
# JDT-specific (Eclipse Java Development Tools)
68+
.classpath
69+
70+
# Annotation Processing
71+
.apt_generated
72+
73+
.sts4-cache/
74+
75+
### Intellij+all ###
76+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
77+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
78+
79+
# User-specific stuff
80+
.idea/**/workspace.xml
81+
.idea/**/tasks.xml
82+
.idea/**/usage.statistics.xml
83+
.idea/**/dictionaries
84+
.idea/**/shelf
85+
86+
# Generated files
87+
.idea/**/contentModel.xml
88+
89+
# Sensitive or high-churn files
90+
.idea/**/dataSources/
91+
.idea/**/dataSources.ids
92+
.idea/**/dataSources.local.xml
93+
.idea/**/sqlDataSources.xml
94+
.idea/**/dynamic.xml
95+
.idea/**/uiDesigner.xml
96+
.idea/**/dbnavigator.xml
97+
98+
# Gradle
99+
.idea/**/gradle.xml
100+
.idea/**/libraries
101+
102+
# Gradle and Maven with auto-import
103+
# When using Gradle or Maven with auto-import, you should exclude module files,
104+
# since they will be recreated, and may cause churn. Uncomment if using
105+
# auto-import.
106+
# .idea/modules.xml
107+
# .idea/*.iml
108+
# .idea/modules
109+
110+
# CMake
111+
cmake-build-*/
112+
113+
# Mongo Explorer plugin
114+
.idea/**/mongoSettings.xml
115+
116+
# File-based project format
117+
*.iws
118+
119+
# IntelliJ
120+
out/
121+
122+
# mpeltonen/sbt-idea plugin
123+
.idea_modules/
124+
125+
# JIRA plugin
126+
atlassian-ide-plugin.xml
127+
128+
# Cursive Clojure plugin
129+
.idea/replstate.xml
130+
131+
# Crashlytics plugin (for Android Studio and IntelliJ)
132+
com_crashlytics_export_strings.xml
133+
crashlytics.properties
134+
crashlytics-build.properties
135+
fabric.properties
136+
137+
# Editor-based Rest Client
138+
.idea/httpRequests
139+
140+
# Android studio 3.1+ serialized cache file
141+
.idea/caches/build_file_checksums.ser
142+
143+
### Intellij+all Patch ###
144+
# Ignores the whole .idea folder and all .iml files
145+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
146+
147+
.idea/
148+
149+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
150+
151+
*.iml
152+
modules.xml
153+
.idea/misc.xml
154+
*.ipr
155+
156+
### Java ###
157+
# Compiled class file
158+
*.class
159+
160+
# Log file
161+
*.log
162+
163+
# BlueJ files
164+
*.ctxt
165+
166+
# Mobile Tools for Java (J2ME)
167+
.mtj.tmp/
168+
169+
# Package Files #
170+
*.jar
171+
*.war
172+
*.nar
173+
*.ear
174+
*.zip
175+
*.tar.gz
176+
*.rar
177+
178+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
179+
hs_err_pid*
180+
181+
# End of https://www.gitignore.io/api/java,eclipse,intellij+all
182+
.gitignore
183+
.idea/distributed-algorithms.iml
184+
.idea/inspectionProfiles/
185+
.idea/modules.xml
186+
.idea/workspace.xml

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.