Advent of Code 2020

.gitignore 681B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # ---> Vim
  2. # swap
  3. [._]*.s[a-v][a-z]
  4. [._]*.sw[a-p]
  5. [._]s[a-v][a-z]
  6. [._]sw[a-p]
  7. # session
  8. Session.vim
  9. # temporary
  10. .netrwhist
  11. *~
  12. # auto-generated tag files
  13. tags
  14. # ---> R
  15. # History files
  16. .Rhistory
  17. .Rapp.history
  18. # Session Data files
  19. .RData
  20. # Example code in package build process
  21. *-Ex.R
  22. # Output files from R CMD build
  23. /*.tar.gz
  24. # Output files from R CMD check
  25. /*.Rcheck/
  26. # RStudio files
  27. .Rproj.user/
  28. # produced vignettes
  29. vignettes/*.html
  30. vignettes/*.pdf
  31. # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
  32. .httr-oauth
  33. # knitr and R markdown default cache directories
  34. /*_cache/
  35. /cache/
  36. # Temporary files created by R markdown
  37. *.utf8.md
  38. *.knit.md
  39. .secretcode