A collection of generic data structures in Go
0

Configure Feed

Select the types of activity you want to include in your feed.

Sync: synced local '.gitignore' with remote 'go/.gitignore' (#89)

Co-authored-by: FollowTheProcess <null>

authored by

Tom Fleet
FollowTheProcess
and committed by
GitHub
(Dec 23, 2024, 10:56 AM UTC) 960b8e7a 669fc52d

+53 -54
+53 -54
.gitignore
··· 1 - # Created by https://www.toptal.com/developers/gitignore/api/macos,linux,windows,visualstudiocode,pycharm+all,go 2 - # Edit at https://www.toptal.com/developers/gitignore?templates=macos,linux,windows,visualstudiocode,pycharm+all,go 1 + # Created by https://www.toptal.com/developers/gitignore/api/macos,windows,linux,visualstudiocode,jetbrains+all,go 2 + # Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,linux,visualstudiocode,jetbrains+all,go 3 3 4 4 ### Go ### 5 5 # If you prefer the allow list template instead of the deny list, see community template: ··· 18 18 # Output of the go coverage tool, specifically when used with LiteIDE 19 19 *.out 20 20 coverage.html 21 - *.pprof 22 21 23 22 # Taskfile 24 23 .task ··· 33 32 # Go workspace file 34 33 go.work 35 34 36 - ### Linux ### 37 - *~ 38 - 39 - # temporary files which can be created if a process still has a handle open of a deleted file 40 - .fuse_hidden* 41 - 42 - # KDE directory preferences 43 - .directory 44 - 45 - # Linux trash folder which might appear on any partition or disk 46 - .Trash-* 47 - 48 - # .nfs files are created when an open file is removed but is still being accessed 49 - .nfs* 50 - 51 - ### macOS ### 52 - # General 53 - .DS_Store 54 - .AppleDouble 55 - .LSOverride 56 - 57 - # Icon must end with two \r 58 - Icon 59 - 60 - 61 - # Thumbnails 62 - ._* 63 - 64 - # Files that might appear in the root of a volume 65 - .DocumentRevisions-V100 66 - .fseventsd 67 - .Spotlight-V100 68 - .TemporaryItems 69 - .Trashes 70 - .VolumeIcon.icns 71 - .com.apple.timemachine.donotpresent 72 - 73 - # Directories potentially created on remote AFP share 74 - .AppleDB 75 - .AppleDesktop 76 - Network Trash Folder 77 - Temporary Items 78 - .apdisk 79 - 80 - ### macOS Patch ### 81 - # iCloud generated files 82 - *.icloud 83 - 84 - ### PyCharm+all ### 35 + ### JetBrains+all ### 85 36 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 86 37 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 87 38 ··· 160 111 # Android studio 3.1+ serialized cache file 161 112 .idea/caches/build_file_checksums.ser 162 113 163 - ### PyCharm+all Patch ### 114 + ### JetBrains+all Patch ### 164 115 # Ignore everything but code style settings and run configurations 165 116 # that are supposed to be shared within teams. 166 117 ··· 168 119 169 120 !.idea/codeStyles 170 121 !.idea/runConfigurations 122 + 123 + ### Linux ### 124 + *~ 125 + 126 + # temporary files which can be created if a process still has a handle open of a deleted file 127 + .fuse_hidden* 128 + 129 + # KDE directory preferences 130 + .directory 131 + 132 + # Linux trash folder which might appear on any partition or disk 133 + .Trash-* 134 + 135 + # .nfs files are created when an open file is removed but is still being accessed 136 + .nfs* 137 + 138 + ### macOS ### 139 + # General 140 + .DS_Store 141 + .AppleDouble 142 + .LSOverride 143 + 144 + # Icon must end with two \r 145 + Icon 146 + 147 + 148 + # Thumbnails 149 + ._* 150 + 151 + # Files that might appear in the root of a volume 152 + .DocumentRevisions-V100 153 + .fseventsd 154 + .Spotlight-V100 155 + .TemporaryItems 156 + .Trashes 157 + .VolumeIcon.icns 158 + .com.apple.timemachine.donotpresent 159 + 160 + # Directories potentially created on remote AFP share 161 + .AppleDB 162 + .AppleDesktop 163 + Network Trash Folder 164 + Temporary Items 165 + .apdisk 166 + 167 + ### macOS Patch ### 168 + # iCloud generated files 169 + *.icloud 171 170 172 171 ### VisualStudioCode ### 173 172 .vscode/* ··· 214 213 # Windows shortcuts 215 214 *.lnk 216 215 217 - # End of https://www.toptal.com/developers/gitignore/api/macos,linux,windows,visualstudiocode,pycharm+all,go 216 + # End of https://www.toptal.com/developers/gitignore/api/macos,windows,linux,visualstudiocode,jetbrains+all,go