Compare commits

..

No commits in common. "0dcd6ac858bd266e11832458df7a35e77da81c63" and "37bde351e1090c3546800ff07ed5546e908270d9" have entirely different histories.

View File

@ -4,21 +4,9 @@ type: docker
name: default name: default
steps: steps:
- name: lintr - name: lintr
image: jupyter/datascience-notebook image: jupyter/datascience-notebook
commands: commands:
- export TAR="/bin/tar"
- Rscript -e 'devtools::install_github("jimhester/lintr")' - Rscript -e 'devtools::install_github("jimhester/lintr")'
# Lint the document, printing output. - Rscript -e 'lintr::lint_package()'
- |
Rscript -e 'lintr::lint_dir(
path=".", pattern=rex::rex(".", one_of("Rr"), maybe("md"), end)
)'
# Return non-zero exit code (no output is printed).
- |
Rscript -e 'quit(
save="no",
status=length(
lintr::lint_dir(path=".", pattern=rex::rex(".", one_of("Rr"), maybe("md"), end))
)
)'