|
1 | | -# Custom |
| 1 | +#--------------------------------------------------------------------------------------- |
| 2 | +# Custom.gitignore |
| 3 | +#--------------------------------------------------------------------------------------- |
2 | 4 | resources/ |
3 | | -renv/ |
4 | | -renv.lock |
5 | 5 | docs |
6 | | -.Rprofile |
7 | 6 | CRAN-RELEASE |
8 | 7 | CRAN-SUBMISSION |
9 | 8 | check/ |
10 | 9 |
|
| 10 | +#--------------------------------------------------------------------------------------- |
| 11 | +# Archives.gitignore |
| 12 | +#--------------------------------------------------------------------------------------- |
| 13 | +# It's better to unpack these files and commit the raw source because |
| 14 | +# git has its own built in compression methods. |
| 15 | +*.7z |
| 16 | +*.jar |
| 17 | +*.rar |
| 18 | +*.zip |
| 19 | +*.gz |
| 20 | +*.gzip |
| 21 | +*.tgz |
| 22 | +*.bzip |
| 23 | +*.bzip2 |
| 24 | +*.bz2 |
| 25 | +*.xz |
| 26 | +*.lzma |
| 27 | +*.cab |
| 28 | +*.xar |
| 29 | +*.zst |
| 30 | +*.tzst |
| 31 | + |
| 32 | +# Packing-only formats |
| 33 | +*.iso |
| 34 | +*.tar |
| 35 | + |
| 36 | +# Package management formats |
| 37 | +*.dmg |
| 38 | +*.xpi |
| 39 | +*.gem |
| 40 | +*.egg |
| 41 | +*.deb |
| 42 | +*.rpm |
| 43 | +*.msi |
| 44 | +*.msm |
| 45 | +*.msp |
| 46 | +*.txz |
| 47 | + |
| 48 | +#--------------------------------------------------------------------------------------- |
| 49 | +# Backup.gitignore |
| 50 | +#--------------------------------------------------------------------------------------- |
| 51 | +*.bak |
| 52 | +*.gho |
| 53 | +*.ori |
| 54 | +*.orig |
| 55 | +*.tmp |
| 56 | + |
| 57 | +#--------------------------------------------------------------------------------------- |
| 58 | +# Images.gitignore |
| 59 | +#--------------------------------------------------------------------------------------- |
| 60 | +# JPEG |
| 61 | +*.jpg |
| 62 | +*.jpeg |
| 63 | +*.jpe |
| 64 | +*.jif |
| 65 | +*.jfif |
| 66 | +*.jfi |
| 67 | + |
| 68 | +# JPEG 2000 |
| 69 | +*.jp2 |
| 70 | +*.j2k |
| 71 | +*.jpf |
| 72 | +*.jpx |
| 73 | +*.jpm |
| 74 | +*.mj2 |
| 75 | + |
| 76 | +# JPEG XR |
| 77 | +*.jxr |
| 78 | +*.hdp |
| 79 | +*.wdp |
| 80 | + |
| 81 | +# Graphics Interchange Format |
| 82 | +*.gif |
| 83 | + |
| 84 | +# RAW |
| 85 | +*.raw |
| 86 | + |
| 87 | +# Web P |
| 88 | +*.webp |
| 89 | + |
| 90 | +# Portable Network Graphics |
| 91 | +*.png |
| 92 | + |
| 93 | +# Animated Portable Network Graphics |
| 94 | +*.apng |
| 95 | + |
| 96 | +# Multiple-image Network Graphics |
| 97 | +*.mng |
| 98 | + |
| 99 | +# Tagged Image File Format |
| 100 | +*.tiff |
| 101 | +*.tif |
| 102 | + |
| 103 | +# Scalable Vector Graphics |
| 104 | +*.svg |
| 105 | +*.svgz |
| 106 | + |
| 107 | +# Portable Document Format |
| 108 | +*.pdf |
| 109 | + |
| 110 | +# X BitMap |
| 111 | +*.xbm |
| 112 | + |
| 113 | +# BMP |
| 114 | +*.bmp |
| 115 | +*.dib |
| 116 | + |
| 117 | +# ICO |
| 118 | +*.ico |
| 119 | + |
| 120 | +# 3D Images |
| 121 | +*.3dm |
| 122 | +*.max |
| 123 | + |
| 124 | +#--------------------------------------------------------------------------------------- |
| 125 | +# Linux.gitignore |
| 126 | +#--------------------------------------------------------------------------------------- |
| 127 | +*~ |
| 128 | + |
| 129 | +# temporary files which can be created if a process still has a handle open of a deleted file |
| 130 | +.fuse_hidden* |
| 131 | + |
| 132 | +# KDE directory preferences |
| 133 | +.directory |
| 134 | + |
| 135 | +# Linux trash folder which might appear on any partition or disk |
| 136 | +.Trash-* |
| 137 | + |
| 138 | +# .nfs files are created when an open file is removed but is still being accessed |
| 139 | +.nfs* |
| 140 | + |
| 141 | +#--------------------------------------------------------------------------------------- |
| 142 | +# macOS.gitignore |
| 143 | +#--------------------------------------------------------------------------------------- |
| 144 | +# General |
| 145 | +.DS_Store |
| 146 | +.AppleDouble |
| 147 | +.LSOverride |
| 148 | + |
| 149 | +# Icon must end with two \r |
| 150 | +Icon |
| 151 | + |
| 152 | +# Thumbnails |
| 153 | +._* |
| 154 | + |
| 155 | +# Files that might appear in the root of a volume |
| 156 | +.DocumentRevisions-V100 |
| 157 | +.fseventsd |
| 158 | +.Spotlight-V100 |
| 159 | +.TemporaryItems |
| 160 | +.Trashes |
| 161 | +.VolumeIcon.icns |
| 162 | +.com.apple.timemachine.donotpresent |
| 163 | + |
| 164 | +# Directories potentially created on remote AFP share |
| 165 | +.AppleDB |
| 166 | +.AppleDesktop |
| 167 | +NetworkTrashFolder |
| 168 | +TemporaryItems |
| 169 | +.apdisk |
| 170 | + |
| 171 | +#--------------------------------------------------------------------------------------- |
| 172 | +# MicrosoftOffice.gitignore |
| 173 | +#--------------------------------------------------------------------------------------- |
| 174 | +*.tmp |
| 175 | + |
| 176 | +# Word temporary |
| 177 | +~$*.doc* |
| 178 | + |
| 179 | +# Word Auto Backup File |
| 180 | +Backupof*.doc* |
| 181 | + |
| 182 | +# Excel temporary |
| 183 | +~$*.xls* |
| 184 | + |
| 185 | +# Excel Backup File |
| 186 | +*.xlk |
| 187 | + |
| 188 | +# PowerPoint temporary |
| 189 | +~$*.ppt* |
| 190 | + |
| 191 | +# Visio autosave temporary files |
| 192 | +*.~vsd* |
| 193 | + |
| 194 | +#--------------------------------------------------------------------------------------- |
| 195 | +# R.gitignore |
| 196 | +#--------------------------------------------------------------------------------------- |
11 | 197 | # History files |
12 | 198 | .Rhistory |
13 | 199 | .Rapp.history |
14 | 200 |
|
15 | 201 | # Session Data files |
16 | 202 | .RData |
| 203 | +.RDataTmp |
17 | 204 |
|
18 | 205 | # User-specific files |
19 | 206 | .Ruserdata |
@@ -47,5 +234,28 @@ vignettes/*.pdf |
47 | 234 |
|
48 | 235 | # R Environment Variables |
49 | 236 | .Renviron |
50 | | -.Rproj.user |
51 | | -inst/doc |
| 237 | + |
| 238 | +# pkgdown site |
| 239 | +docs/ |
| 240 | + |
| 241 | +# translation temp files |
| 242 | +po/*~ |
| 243 | + |
| 244 | +# RStudio Connect folder |
| 245 | +rsconnect/ |
| 246 | + |
| 247 | +#--------------------------------------------------------------------------------------- |
| 248 | +# VSCode.gitignore |
| 249 | +#--------------------------------------------------------------------------------------- |
| 250 | +.vscode/* |
| 251 | +!.vscode/settings.json |
| 252 | +!.vscode/tasks.json |
| 253 | +!.vscode/launch.json |
| 254 | +!.vscode/extensions.json |
| 255 | +!.vscode/*.code-snippets |
| 256 | + |
| 257 | +# Local History for Visual Studio Code |
| 258 | +.history/ |
| 259 | + |
| 260 | +# Built Visual Studio Code Extensions |
| 261 | +*.vsix |