.gitignore 2.4 KB

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