bitbucket.org/ai69/amoy@v0.2.3/.gitignore (about) 1 2 # Created by https://www.gitignore.io/api/go,linux,macos,windows,jetbrains+all,visualstudiocode 3 # Edit at https://www.gitignore.io/?templates=go,linux,macos,windows,jetbrains+all,visualstudiocode 4 5 ### Go ### 6 # Binaries for programs and plugins 7 *.exe 8 *.exe~ 9 *.dll 10 *.so 11 *.dylib 12 13 # Test binary, built with `go test -c` 14 *.test 15 16 # Output of the go coverage tool, specifically when used with LiteIDE 17 *.out 18 coverage.txt 19 20 # Dependency directories (remove the comment below to include it) 21 # vendor/ 22 23 ### Go Patch ### 24 /vendor/ 25 /Godeps/ 26 27 ### JetBrains+all ### 28 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm 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 # Generated files 39 .idea/**/contentModel.xml 40 41 # Sensitive or high-churn files 42 .idea/**/dataSources/ 43 .idea/**/dataSources.ids 44 .idea/**/dataSources.local.xml 45 .idea/**/sqlDataSources.xml 46 .idea/**/dynamic.xml 47 .idea/**/uiDesigner.xml 48 .idea/**/dbnavigator.xml 49 50 # Gradle 51 .idea/**/gradle.xml 52 .idea/**/libraries 53 54 # Gradle and Maven with auto-import 55 # When using Gradle or Maven with auto-import, you should exclude module files, 56 # since they will be recreated, and may cause churn. Uncomment if using 57 # auto-import. 58 # .idea/modules.xml 59 # .idea/*.iml 60 # .idea/modules 61 # *.iml 62 # *.ipr 63 64 # CMake 65 cmake-build-*/ 66 67 # Mongo Explorer plugin 68 .idea/**/mongoSettings.xml 69 70 # File-based project format 71 *.iws 72 73 # IntelliJ 74 out/ 75 76 # mpeltonen/sbt-idea plugin 77 .idea_modules/ 78 79 # JIRA plugin 80 atlassian-ide-plugin.xml 81 82 # Cursive Clojure plugin 83 .idea/replstate.xml 84 85 # Crashlytics plugin (for Android Studio and IntelliJ) 86 com_crashlytics_export_strings.xml 87 crashlytics.properties 88 crashlytics-build.properties 89 fabric.properties 90 91 # Editor-based Rest Client 92 .idea/httpRequests 93 94 # Android studio 3.1+ serialized cache file 95 .idea/caches/build_file_checksums.ser 96 97 ### JetBrains+all Patch ### 98 # Ignores the whole .idea folder and all .iml files 99 # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360 100 101 .idea/ 102 103 # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 104 105 *.iml 106 modules.xml 107 .idea/misc.xml 108 *.ipr 109 110 # Sonarlint plugin 111 .idea/sonarlint 112 113 ### Linux ### 114 *~ 115 116 # temporary files which can be created if a process still has a handle open of a deleted file 117 .fuse_hidden* 118 119 # KDE directory preferences 120 .directory 121 122 # Linux trash folder which might appear on any partition or disk 123 .Trash-* 124 125 # .nfs files are created when an open file is removed but is still being accessed 126 .nfs* 127 128 ### macOS ### 129 # General 130 .DS_Store 131 .AppleDouble 132 .LSOverride 133 134 # Icon must end with two \r 135 Icon 136 137 # Thumbnails 138 ._* 139 140 # Files that might appear in the root of a volume 141 .DocumentRevisions-V100 142 .fseventsd 143 .Spotlight-V100 144 .TemporaryItems 145 .Trashes 146 .VolumeIcon.icns 147 .com.apple.timemachine.donotpresent 148 149 # Directories potentially created on remote AFP share 150 .AppleDB 151 .AppleDesktop 152 Network Trash Folder 153 Temporary Items 154 .apdisk 155 156 ### VisualStudioCode ### 157 .vscode/* 158 !.vscode/settings.json 159 !.vscode/tasks.json 160 !.vscode/launch.json 161 !.vscode/extensions.json 162 163 ### VisualStudioCode Patch ### 164 # Ignore all local history of files 165 .history 166 167 ### Windows ### 168 # Windows thumbnail cache files 169 Thumbs.db 170 Thumbs.db:encryptable 171 ehthumbs.db 172 ehthumbs_vista.db 173 174 # Dump file 175 *.stackdump 176 177 # Folder config file 178 [Dd]esktop.ini 179 180 # Recycle Bin used on file shares 181 $RECYCLE.BIN/ 182 183 # Windows Installer files 184 *.cab 185 *.msi 186 *.msix 187 *.msm 188 *.msp 189 190 # Windows shortcuts 191 *.lnk 192 193 # End of https://www.gitignore.io/api/go,linux,macos,windows,jetbrains+all,visualstudiocode 194