.gitignore 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. ### CUSTOM ###
  2. /data
  3. total_execution.time
  4. ### TESTING ###
  5. _snaps/
  6. ### R ###
  7. # History files
  8. .Rhistory
  9. .Rapp.history
  10. # Session Data files
  11. .RData
  12. .RDataTmp
  13. # User-specific files
  14. .Ruserdata
  15. # Example code in package build process
  16. *-Ex.R
  17. # Output files from R CMD build
  18. /*.tar.gz
  19. # Output files from R CMD check
  20. /*.Rcheck/
  21. # RStudio files
  22. .Rproj.user/
  23. # produced vignettes
  24. vignettes/*.html
  25. vignettes/*.pdf
  26. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  27. .httr-oauth
  28. # knitr and R markdown default cache directories
  29. *_cache/
  30. /cache/
  31. # Temporary files created by R markdown
  32. *.utf8.md
  33. *.knit.md
  34. # R Environment Variables
  35. .Renviron
  36. # pkgdown site
  37. docs/
  38. # translation temp files
  39. po/*~
  40. # RStudio Connect folder
  41. rsconnect/
  42. ### R.Bookdown Stack ###
  43. # R package: bookdown caching files
  44. /*_files/
  45. ### C++ ###
  46. # Prerequisites
  47. *.d
  48. # Compiled Object files
  49. *.slo
  50. *.lo
  51. *.o
  52. *.obj
  53. # Precompiled Headers
  54. *.gch
  55. *.pch
  56. # Compiled Dynamic libraries
  57. *.so
  58. *.dylib
  59. *.dll
  60. # Fortran module files
  61. *.mod
  62. *.smod
  63. # Compiled Static libraries
  64. *.lai
  65. *.la
  66. *.a
  67. *.lib
  68. # Executables
  69. *.exe
  70. *.out
  71. *.app
  72. ### macOS ###
  73. # General
  74. .DS_Store
  75. .AppleDouble
  76. .LSOverride
  77. # Icon must end with two \r
  78. Icon
  79. # Thumbnails
  80. ._*
  81. # Files that might appear in the root of a volume
  82. .DocumentRevisions-V100
  83. .fseventsd
  84. .Spotlight-V100
  85. .TemporaryItems
  86. .Trashes
  87. .VolumeIcon.icns
  88. .com.apple.timemachine.donotpresent
  89. # Directories potentially created on remote AFP share
  90. .AppleDB
  91. .AppleDesktop
  92. Network Trash Folder
  93. Temporary Items
  94. .apdisk
  95. ### macOS Patch ###
  96. # iCloud generated files
  97. *.icloud
  98. ### SublimeText ###
  99. # Cache files for Sublime Text
  100. *.tmlanguage.cache
  101. *.tmPreferences.cache
  102. *.stTheme.cache
  103. # Workspace files are user-specific
  104. *.sublime-workspace
  105. *.sublime-project
  106. # Project files should be checked into the repository, unless a significant
  107. # proportion of contributors will probably not be using Sublime Text
  108. # *.sublime-project
  109. # SFTP configuration file
  110. sftp-config.json
  111. sftp-config-alt*.json
  112. # Package control specific files
  113. Package Control.last-run
  114. Package Control.ca-list
  115. Package Control.ca-bundle
  116. Package Control.system-ca-bundle
  117. Package Control.cache/
  118. Package Control.ca-certs/
  119. Package Control.merged-ca-bundle
  120. Package Control.user-ca-bundle
  121. oscrypto-ca-bundle.crt
  122. bh_unicode_properties.cache
  123. # Sublime-github package stores a github token in this file
  124. # https://packagecontrol.io/packages/sublime-github
  125. GitHub.sublime-settings