Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Devcontainer improvements #205

Merged
merged 6 commits into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,15 @@ RUN apt-get install -y libqpdf28 qpdf ghostscript
RUN install2.r --error devtools rJava RUnit zoo qpdf languageserver
RUN installGithub.r r-lib/revdepcheck
RUN apt-get install -y pandoc
RUN install2.r --error ggplot2
RUN install2.r --error ggplot2 tinytex
RUN Rscript -e "{\
library(tinytex);\
tlmgr_install('datetime');\
tlmgr_install('inputenc');\
tlmgr_install('hyperref');\
tlmgr_install('url');\
tlmgr_install('fmtcount');\
tlmgr_install('float');\
tlmgr_install('natbib');\
tinytex:::install_yihui_pkgs();\
}"
4 changes: 4 additions & 0 deletions .lintr
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# disables linting with lintr, as we have not decided yet which linters to use
linters: linters_with_defaults() # see vignette("lintr")
encoding: "UTF-8"
exclusions: list("R")
Loading