github.com/mithrandie/csvq@v1.18.1/.gitignore (about) 1 ################################ 2 # Project Specific Settings 3 ################################ 4 vendor/ 5 csvq 6 build/ 7 dist/ 8 *.output 9 10 ################################ 11 # Jekyll 12 ################################ 13 _site/ 14 .sass-cache/ 15 .jekyll-metadata 16 17 ################################ 18 # Go 19 ################################ 20 # Binaries for programs and plugins 21 *.exe 22 *.dll 23 *.so 24 *.dylib 25 26 # Test binary, build with `go test -c` 27 *.test 28 29 # Output of the go coverage tool, specifically when used with LiteIDE 30 *.out 31 32 # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736 33 .glide/ 34 35 36 ################################ 37 # Editor Common 38 ################################ 39 *~ 40 41 42 ################################ 43 # Vim 44 ################################ 45 # swap 46 [._]*.s[a-v][a-z] 47 [._]*.sw[a-p] 48 [._]s[a-v][a-z] 49 [._]sw[a-p] 50 # session 51 Session.vim 52 # temporary 53 .netrwhist 54 # auto-generated tag files 55 tags 56 57 58 ################################ 59 # Emacs 60 ################################ 61 \#*\# 62 /.emacs.desktop 63 /.emacs.desktop.lock 64 *.elc 65 auto-save-list 66 tramp 67 .\#* 68 69 # Org-mode 70 .org-id-locations 71 *_archive 72 73 # flymake-mode 74 *_flymake.* 75 76 # eshell files 77 /eshell/history 78 /eshell/lastdir 79 80 # elpa packages 81 /elpa/ 82 83 # reftex files 84 *.rel 85 86 # AUCTeX auto folder 87 /auto/ 88 89 # cask packages 90 .cask/ 91 92 # Flycheck 93 flycheck_*.el 94 95 # server auth directory 96 /server/ 97 98 # projectiles files 99 .projectile 100 101 # directory configuration 102 .dir-locals.el 103 104 105 ################################ 106 # SublimeText 107 ################################ 108 # cache files for sublime text 109 *.tmlanguage.cache 110 *.tmPreferences.cache 111 *.stTheme.cache 112 113 # workspace files are user-specific 114 *.sublime-workspace 115 116 # project files should be checked into the repository, unless a significant 117 # proportion of contributors will probably not be using SublimeText 118 # *.sublime-project 119 120 # sftp configuration file 121 sftp-config.json 122 123 # Package control specific files 124 Package Control.last-run 125 Package Control.ca-list 126 Package Control.ca-bundle 127 Package Control.system-ca-bundle 128 Package Control.cache/ 129 Package Control.ca-certs/ 130 Package Control.merged-ca-bundle 131 Package Control.user-ca-bundle 132 oscrypto-ca-bundle.crt 133 bh_unicode_properties.cache 134 135 # Sublime-github package stores a github token in this file 136 # https://packagecontrol.io/packages/sublime-github 137 GitHub.sublime-settings 138 139 140 ################################ 141 # IntelliJ IDEA 142 ################################ 143 .idea 144 145 ## File-based project format: 146 *.iws 147 148 ## Plugin-specific files: 149 # IntelliJ 150 /out/ 151 152 ################################ 153 # Windows 154 ################################ 155 # Windows thumbnail cache files 156 Thumbs.db 157 ehthumbs.db 158 ehthumbs_vista.db 159 160 # Folder config file 161 Desktop.ini 162 163 # Recycle Bin used on file shares 164 $RECYCLE.BIN/ 165 166 # Windows Installer files 167 *.cab 168 *.msi 169 *.msm 170 *.msp 171 172 # Windows shortcuts 173 *.lnk 174 175 176 ################################ 177 # macOS 178 ################################ 179 *.DS_Store 180 .AppleDouble 181 .LSOverride 182 183 # Icon must end with two \r 184 Icon 185 186 # Thumbnails 187 ._* 188 189 # Files that might appear in the root of a volume 190 .DocumentRevisions-V100 191 .fseventsd 192 .Spotlight-V100 193 .TemporaryItems 194 .Trashes 195 .VolumeIcon.icns 196 .com.apple.timemachine.donotpresent