-
Notifications
You must be signed in to change notification settings - Fork 3
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 #232 from Sage-Bionetworks/dev
v23.12.1 testing into staging
- Loading branch information
Showing
16 changed files
with
1,600 additions
and
497 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 |
---|---|---|
@@ -0,0 +1,72 @@ | ||
# See https://pre-commit.com for more information | ||
# See https://pre-commit.com/hooks.html for more hooks | ||
repos: | ||
- repo: https://github.com/lorenzwalthert/precommit | ||
rev: v0.3.2.9019 | ||
hooks: | ||
- id: style-files | ||
args: [--style_pkg=styler, --style_fun=tidyverse_style] | ||
# codemeta must be above use-tidy-description when both are used | ||
# - id: codemeta-description-updated | ||
- id: use-tidy-description | ||
- id: lintr | ||
- id: readme-rmd-rendered | ||
- id: parsable-R | ||
- id: no-browser-statement | ||
- id: no-debug-statement | ||
- id: deps-in-desc | ||
- 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/.*| | ||
)$ | ||
- 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' | ||
- id: check-merge-conflict | ||
- 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,6 +1,6 @@ | ||
Package: dataflow | ||
Title: Data Flow App Demo | ||
Version: 23.06.1 | ||
Version: 23.10.1 | ||
Authors@R: person('L', 'Wolfe', email = '[email protected]', role = c('cre', 'aut')) | ||
Description: A data flow package. | ||
License: MIT + file LICENSE | ||
|
Oops, something went wrong.