|
| 1 | + |
| 2 | +# Created by https://www.gitignore.io/api/go,c++,java,cmake,intellij+all,visualstudiocode |
| 3 | +# Edit at https://www.gitignore.io/?templates=go,c++,java,cmake,intellij+all,visualstudiocode |
| 4 | + |
| 5 | +### C++ ### |
| 6 | +# Prerequisites |
| 7 | +*.d |
| 8 | + |
| 9 | +# Compiled Object files |
| 10 | +*.slo |
| 11 | +*.lo |
| 12 | +*.o |
| 13 | +*.obj |
| 14 | + |
| 15 | +# Precompiled Headers |
| 16 | +*.gch |
| 17 | +*.pch |
| 18 | + |
| 19 | +# Compiled Dynamic libraries |
| 20 | +*.so |
| 21 | +*.dylib |
| 22 | +*.dll |
| 23 | + |
| 24 | +# Compiled Static libraries |
| 25 | +*.lai |
| 26 | +*.la |
| 27 | +*.a |
| 28 | +*.lib |
| 29 | + |
| 30 | +# Executables |
| 31 | +*.exe |
| 32 | +*.out |
| 33 | +*.app |
| 34 | + |
| 35 | +### CMake ### |
| 36 | +cpp/CMakeLists.txt.user |
| 37 | +cpp/CMakeCache.txt |
| 38 | +cpp/CMakeFiles |
| 39 | +cpp/CMakeScripts |
| 40 | +cpp/Testing |
| 41 | +cpp/Makefile |
| 42 | +cpp/cmake_install.cmake |
| 43 | +cpp/install_manifest.txt |
| 44 | +cpp/compile_commands.json |
| 45 | +cpp/CTestTestfile.cmake |
| 46 | +_deps |
| 47 | + |
| 48 | +### CMake Patch ### |
| 49 | +# External projects |
| 50 | +*-prefix/ |
| 51 | + |
| 52 | +### Go ### |
| 53 | +# Binaries for programs and plugins |
| 54 | +*.exe~ |
| 55 | + |
| 56 | +# Test binary, built with `go test -c` |
| 57 | +*.test |
| 58 | + |
| 59 | +# Output of the go coverage tool, specifically when used with LiteIDE |
| 60 | + |
| 61 | +# Dependency directories (remove the comment below to include it) |
| 62 | +# vendor/ |
| 63 | + |
| 64 | +### Go Patch ### |
| 65 | +/go/vendor/ |
| 66 | +/Godeps/ |
| 67 | + |
| 68 | +### Intellij+all ### |
| 69 | +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm |
| 70 | +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 |
| 71 | + |
| 72 | +antlr/.antlr |
| 73 | +antlr/gen/ |
| 74 | +antlr/MojoLexer.tokens |
| 75 | + |
| 76 | +# User-specific stuff |
| 77 | +.idea/**/workspace.xml |
| 78 | +.idea/**/tasks.xml |
| 79 | +.idea/**/usage.statistics.xml |
| 80 | +.idea/**/dictionaries |
| 81 | +.idea/**/shelf |
| 82 | + |
| 83 | +# Generated files |
| 84 | +.idea/**/contentModel.xml |
| 85 | + |
| 86 | +# Sensitive or high-churn files |
| 87 | +.idea/**/dataSources/ |
| 88 | +.idea/**/dataSources.ids |
| 89 | +.idea/**/dataSources.local.xml |
| 90 | +.idea/**/sqlDataSources.xml |
| 91 | +.idea/**/dynamic.xml |
| 92 | +.idea/**/uiDesigner.xml |
| 93 | +.idea/**/dbnavigator.xml |
| 94 | + |
| 95 | +# Gradle |
| 96 | +.idea/**/gradle.xml |
| 97 | +.idea/**/libraries |
| 98 | + |
| 99 | +# Gradle and Maven with auto-import |
| 100 | +# When using Gradle or Maven with auto-import, you should exclude module files, |
| 101 | +# since they will be recreated, and may cause churn. Uncomment if using |
| 102 | +# auto-import. |
| 103 | +# .idea/modules.xml |
| 104 | +# .idea/*.iml |
| 105 | +# .idea/modules |
| 106 | +# *.iml |
| 107 | +# *.ipr |
| 108 | + |
| 109 | +# CMake |
| 110 | +cmake-build-*/ |
| 111 | + |
| 112 | +# Mongo Explorer plugin |
| 113 | +.idea/**/mongoSettings.xml |
| 114 | + |
| 115 | +# File-based project format |
| 116 | +*.iws |
| 117 | + |
| 118 | +# IntelliJ |
| 119 | +out/ |
| 120 | + |
| 121 | +# mpeltonen/sbt-idea plugin |
| 122 | +.idea_modules/ |
| 123 | + |
| 124 | +# JIRA plugin |
| 125 | +atlassian-ide-plugin.xml |
| 126 | + |
| 127 | +# Cursive Clojure plugin |
| 128 | +.idea/replstate.xml |
| 129 | + |
| 130 | +# Crashlytics plugin (for Android Studio and IntelliJ) |
| 131 | +com_crashlytics_export_strings.xml |
| 132 | +crashlytics.properties |
| 133 | +crashlytics-build.properties |
| 134 | +fabric.properties |
| 135 | + |
| 136 | +# Editor-based Rest Client |
| 137 | +.idea/httpRequests |
| 138 | + |
| 139 | +# Android studio 3.1+ serialized cache file |
| 140 | +.idea/caches/build_file_checksums.ser |
| 141 | + |
| 142 | +### Intellij+all Patch ### |
| 143 | +# Ignores the whole .idea folder and all .iml files |
| 144 | +# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360 |
| 145 | + |
| 146 | +.idea/ |
| 147 | + |
| 148 | +# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 |
| 149 | + |
| 150 | +*.iml |
| 151 | +modules.xml |
| 152 | +.idea/misc.xml |
| 153 | +*.ipr |
| 154 | + |
| 155 | +# Sonarlint plugin |
| 156 | +.idea/sonarlint |
| 157 | + |
| 158 | +### Java ### |
| 159 | +# Compiled class file |
| 160 | +*.class |
| 161 | + |
| 162 | +# Log file |
| 163 | +*.log |
| 164 | + |
| 165 | +# BlueJ files |
| 166 | +*.ctxt |
| 167 | + |
| 168 | +# Mobile Tools for Java (J2ME) |
| 169 | +.mtj.tmp/ |
| 170 | + |
| 171 | +# Package Files # |
| 172 | +*.jar |
| 173 | +*.war |
| 174 | +*.nar |
| 175 | +*.ear |
| 176 | +*.zip |
| 177 | +*.tar.gz |
| 178 | +*.rar |
| 179 | + |
| 180 | +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml |
| 181 | +hs_err_pid* |
| 182 | + |
| 183 | +### VisualStudioCode ### |
| 184 | +.vscode/* |
| 185 | +!.vscode/settings.json |
| 186 | +!.vscode/tasks.json |
| 187 | +!.vscode/launch.json |
| 188 | +!.vscode/extensions.json |
| 189 | + |
| 190 | +### VisualStudioCode Patch ### |
| 191 | +# Ignore all local history of files |
| 192 | +.history |
| 193 | + |
| 194 | +.DS_Store |
| 195 | + |
| 196 | +java/target/ |
| 197 | +java/mojo-parser/target/ |
| 198 | + |
| 199 | +# End of https://www.gitignore.io/api/go,c++,java,cmake,intellij+all,visualstudiocode |
0 commit comments