Commit | Line | Data |
---|---|---|
35d7ecda | 1 | |
dc0e3c95 JB |
2 | # Created by https://www.gitignore.io/api/eclipse,intellij |
3 | # Edit at https://www.gitignore.io/?templates=eclipse,intellij | |
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/ | |
35d7ecda JB |
74 | |
75 | ### Intellij ### | |
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 Patch ### | |
144 | # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 | |
145 | ||
146 | # *.iml | |
147 | # modules.xml | |
148 | # .idea/misc.xml | |
149 | # *.ipr | |
150 | ||
151 | # Sonarlint plugin | |
152 | .idea/sonarlint | |
153 | ||
dc0e3c95 | 154 | # End of https://www.gitignore.io/api/eclipse,intellij |