amuz.es/src/infra/goutils@v0.1.3/.gitignore (about) 1 2 # Created by https://www.gitignore.io/api/intellij,go,linux,osx,windows 3 4 ### Intellij ### 5 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm 6 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 7 8 .idea 9 *.iml 10 11 ## File-based project format: 12 *.ipr 13 *.iws 14 15 ## Plugin-specific files: 16 17 # IntelliJ 18 /out/ 19 20 # mpeltonen/sbt-idea plugin 21 .idea_modules/ 22 23 # JIRA plugin 24 atlassian-ide-plugin.xml 25 26 # Crashlytics plugin (for Android Studio and IntelliJ) 27 com_crashlytics_export_strings.xml 28 crashlytics.properties 29 crashlytics-build.properties 30 fabric.properties 31 32 33 ### Go ### 34 # Compiled Object files, Static and Dynamic libs (Shared Objects) 35 *.o 36 *.a 37 *.so 38 39 # Folders 40 _obj 41 _test 42 43 # Architecture specific extensions/prefixes 44 *.[568vq] 45 [568vq].out 46 47 *.cgo1.go 48 *.cgo2.c 49 _cgo_defun.c 50 _cgo_gotypes.go 51 _cgo_export.* 52 53 _testmain.go 54 55 *.exe 56 *.test 57 *.prof 58 59 60 ### Linux ### 61 *~ 62 *.swp 63 64 # temporary files which can be created if a process still has a handle open of a deleted file 65 .fuse_hidden* 66 67 # KDE directory preferences 68 .directory 69 70 # Linux trash folder which might appear on any partition or disk 71 .Trash-* 72 73 74 ### OSX ### 75 .DS_Store 76 .AppleDouble 77 .LSOverride 78 79 # Icon must end with two \r 80 Icon 81 82 83 # Thumbnails 84 ._* 85 86 # Files that might appear in the root of a volume 87 .DocumentRevisions-V100 88 .fseventsd 89 .Spotlight-V100 90 .TemporaryItems 91 .Trashes 92 .VolumeIcon.icns 93 94 # Directories potentially created on remote AFP share 95 .AppleDB 96 .AppleDesktop 97 Network Trash Folder 98 Temporary Items 99 .apdisk 100 101 102 ### Windows ### 103 # Windows image file caches 104 Thumbs.db 105 ehthumbs.db 106 107 # Folder config file 108 Desktop.ini 109 110 # Recycle Bin used on file shares 111 $RECYCLE.BIN/ 112 113 # Windows Installer files 114 *.cab 115 *.msi 116 *.msm 117 *.msp 118 119 # Windows shortcuts 120 *.lnk