-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #570 from Sage-Bionetworks/develop
Sprint 16-19 updates
- Loading branch information
Showing
16 changed files
with
284 additions
and
114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
^\.pre-commit-config\.yaml$ | ||
^renv$ | ||
^renv\.lock$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# All available hooks: https://pre-commit.com/hooks.html | ||
# R specific hooks: https://github.com/lorenzwalthert/precommit | ||
repos: | ||
- repo: https://github.com/lorenzwalthert/precommit | ||
rev: v0.3.2.9019 | ||
hooks: | ||
- id: style-files | ||
args: [--style_pkg=styler, --style_fun=tidyverse_style] | ||
- id: roxygenize | ||
# codemeta must be above use-tidy-description when both are used | ||
# - id: codemeta-description-updated | ||
- id: use-tidy-description | ||
- id: spell-check | ||
exclude: > | ||
(?x)^( | ||
.*\.[rR]| | ||
.*\.feather| | ||
.*\.jpeg| | ||
.*\.pdf| | ||
.*\.png| | ||
.*\.py| | ||
.*\.RData| | ||
.*\.rds| | ||
.*\.Rds| | ||
.*\.Rproj| | ||
.*\.sh| | ||
(.*/|)\.gitignore| | ||
(.*/|)\.gitlab-ci\.yml| | ||
(.*/|)\.lintr| | ||
(.*/|)\.pre-commit-.*| | ||
(.*/|)\.Rbuildignore| | ||
(.*/|)\.Renviron| | ||
(.*/|)\.Rprofile| | ||
(.*/|)\.travis\.yml| | ||
(.*/|)appveyor\.yml| | ||
(.*/|)NAMESPACE| | ||
(.*/|)renv/settings\.dcf| | ||
(.*/|)renv\.lock| | ||
(.*/|)WORDLIST| | ||
\.github/workflows/.*| | ||
data/.*| | ||
)$ | ||
- id: lintr | ||
- id: readme-rmd-rendered | ||
- id: parsable-R | ||
- id: no-browser-statement | ||
- id: no-debug-statement | ||
- id: deps-in-desc | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: check-added-large-files | ||
args: ['--maxkb=200'] | ||
- id: file-contents-sorter | ||
files: '^\.Rbuildignore$' | ||
- id: end-of-file-fixer | ||
exclude: '\.Rd' | ||
- repo: https://github.com/pre-commit-ci/pre-commit-ci-config | ||
rev: v1.5.1 | ||
hooks: | ||
# Only reuiqred when https://pre-commit.ci is used for config validation | ||
- id: check-pre-commit-ci-config | ||
- repo: local | ||
hooks: | ||
- id: forbid-to-commit | ||
name: Don't commit common R artifacts | ||
entry: Cannot commit .Rhistory, .RData, .Rds or .rds. | ||
language: fail | ||
files: '\.(Rhistory|RData|Rds|rds)$' | ||
# `exclude: <regex>` to allow committing specific files | ||
|
||
ci: | ||
autoupdate_schedule: monthly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
FROM ghcr.io/afwillia/shiny-base:release-update-node | ||
LABEL maintainer="Anthony [email protected]" | ||
|
||
# add version tag as a build argument | ||
ARG DCA_VERSION | ||
|
||
ENV DCA_VERSION=$DCA_VERSION | ||
|
||
USER root | ||
RUN apt-get update | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.