├── .Rbuildignore ├── .covrignore ├── .github ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ └── issue_template.md ├── SUPPORT.md └── workflows │ ├── R-CMD-check.yaml │ ├── format-suggest.yaml │ ├── lint-undesirable-functions.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── addin.R ├── air.R ├── author.R ├── badge.R ├── block.R ├── browse.R ├── ci.R ├── citation.R ├── code-of-conduct.R ├── course.R ├── coverage.R ├── cpp11.R ├── cran.R ├── create.R ├── data-table.R ├── data.R ├── description.R ├── directory.R ├── documentation.R ├── edit.R ├── git-default-branch.R ├── git.R ├── github-actions.R ├── github-labels.R ├── github-pages.R ├── github.R ├── github_token.R ├── helpers.R ├── ignore.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── issue.R ├── jenkins.R ├── latest-dependencies.R ├── license.R ├── lifecycle.R ├── line-ending.R ├── logo.R ├── make.R ├── namespace.R ├── news.R ├── package.R ├── pipe.R ├── pkgdown.R ├── positron.R ├── pr.R ├── proj-desc.R ├── proj.R ├── r.R ├── rcpp.R ├── readme.R ├── release.R ├── rename-files.R ├── revdep.R ├── rmarkdown.R ├── roxygen.R ├── rprofile.R ├── rstudio.R ├── sitrep.R ├── spelling.R ├── template.R ├── test.R ├── tibble.R ├── tidyverse.R ├── tutorial.R ├── ui-legacy.R ├── upkeep.R ├── use-compat-file.R ├── use_github_file.R ├── use_import_from.R ├── use_standalone.R ├── usethis-deprecated.R ├── usethis-package.R ├── utils-gh.R ├── utils-git.R ├── utils-github.R ├── utils-glue.R ├── utils-rematch2.R ├── utils-roxygen.R ├── utils-ui.R ├── utils.R ├── version.R ├── vignette.R ├── vscode.R └── write.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── codecov.yml ├── cran-comments.md ├── inst ├── WORDLIST └── templates │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ ├── Jenkinsfile │ ├── Makefile │ ├── NEWS.md │ ├── addins.dcf │ ├── article.Rmd │ ├── article.qmd │ ├── circleci-config.yml │ ├── citation-template.R │ ├── code-cpp11.cpp │ ├── code.c │ ├── code.cpp │ ├── codecov.yml │ ├── cran-comments.md │ ├── gitlab-ci.yml │ ├── junit-testthat.R │ ├── license-AGPL-3.md │ ├── license-GPL-2.md │ ├── license-GPL-3.md │ ├── license-LGPL-2.1.md │ ├── license-LGPL-3.md │ ├── license-apache-2.md │ ├── license-cc0.md │ ├── license-ccby-4.md │ ├── license-mit.md │ ├── license-proprietary.txt │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ ├── package-README │ ├── packagename-data-prep.R │ ├── packagename-package.R │ ├── pipe.R │ ├── project-README │ ├── readme-rmd-pre-commit.sh │ ├── rmarkdown-template.Rmd │ ├── rmarkdown-template.yml │ ├── template.Rproj │ ├── test-example-2.1.R │ ├── testthat.R │ ├── tidy-contributing.md │ ├── tidy-issue.md │ ├── tidy-support.md │ ├── tutorial-template.Rmd │ ├── vignette.Rmd │ ├── vignette.qmd │ ├── vscode-c_cpp_properties.json │ ├── vscode-debug.R │ ├── vscode-launch.json │ └── year-copyright.txt ├── man ├── badges.Rd ├── browse-this.Rd ├── create_from_github.Rd ├── create_package.Rd ├── edit.Rd ├── edit_file.Rd ├── figures │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ └── logo.png ├── git-default-branch.Rd ├── git_protocol.Rd ├── git_sitrep.Rd ├── git_vaccinate.Rd ├── github-token.Rd ├── issue-this.Rd ├── licenses.Rd ├── proj_activate.Rd ├── proj_sitrep.Rd ├── proj_utils.Rd ├── pull-requests.Rd ├── rename_files.Rd ├── roxygen │ └── templates │ │ └── double-auth.R ├── rprofile-helper.Rd ├── tidy-deprecated.Rd ├── tidyverse.Rd ├── ui-legacy-functions.Rd ├── ui-questions.Rd ├── ui_silence.Rd ├── use_addin.Rd ├── use_air.Rd ├── use_author.Rd ├── use_blank_slate.Rd ├── use_build_ignore.Rd ├── use_citation.Rd ├── use_code_of_conduct.Rd ├── use_course_details.Rd ├── use_coverage.Rd ├── use_cpp11.Rd ├── use_cran_comments.Rd ├── use_data.Rd ├── use_data_table.Rd ├── use_description.Rd ├── use_directory.Rd ├── use_git.Rd ├── use_git_config.Rd ├── use_git_hook.Rd ├── use_git_ignore.Rd ├── use_git_remote.Rd ├── use_github.Rd ├── use_github_action.Rd ├── use_github_actions_badge.Rd ├── use_github_file.Rd ├── use_github_labels.Rd ├── use_github_links.Rd ├── use_github_pages.Rd ├── use_github_release.Rd ├── use_gitlab_ci.Rd ├── use_import_from.Rd ├── use_jenkins.Rd ├── use_latest_dependencies.Rd ├── use_lifecycle.Rd ├── use_logo.Rd ├── use_make.Rd ├── use_namespace.Rd ├── use_news_md.Rd ├── use_package.Rd ├── use_package_doc.Rd ├── use_pipe.Rd ├── use_pkgdown.Rd ├── use_r.Rd ├── use_rcpp.Rd ├── use_readme_rmd.Rd ├── use_release_issue.Rd ├── use_revdep.Rd ├── use_rmarkdown_template.Rd ├── use_roxygen_md.Rd ├── use_rstudio.Rd ├── use_rstudio_preferences.Rd ├── use_spell_check.Rd ├── use_standalone.Rd ├── use_template.Rd ├── use_test_helper.Rd ├── use_testthat.Rd ├── use_tibble.Rd ├── use_tidy_thanks.Rd ├── use_tutorial.Rd ├── use_upkeep_issue.Rd ├── use_version.Rd ├── use_vignette.Rd ├── usethis-package.Rd ├── usethis_options.Rd ├── write-this.Rd └── zip-utils.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── principles.md ├── revdep ├── .gitignore ├── README.md ├── cran.md ├── failures.md └── problems.md ├── tests ├── manual │ ├── README.md │ ├── manual-create-from-github-private-repo.R │ ├── manual-create-from-github.R │ ├── manual-fork-upstream-is-not-origin-parent.R │ ├── manual-git-sitrep.R │ ├── manual-list-ghe-repos.R │ ├── manual-pr-functions.R │ ├── manual-upstream-only.R │ ├── manual-use-course.R │ ├── manual-use-github-enterprise.R │ ├── manual-use-github-pages.R │ ├── manual-use-github.R │ ├── manual-use-tidy-pkgdown.R │ └── manual-use-tidy-thanks.R ├── spelling.R ├── testthat.R └── testthat │ ├── _snaps │ ├── air.md │ ├── author.md │ ├── badge.md │ ├── course.md │ ├── coverage.md │ ├── cpp11.md │ ├── data-table.md │ ├── edit.md │ ├── git-default-branch.md │ ├── github-actions.md │ ├── github.md │ ├── helpers.md │ ├── lifecycle.md │ ├── logo.md │ ├── news.md │ ├── package.md │ ├── pipe.md │ ├── pkgdown.md │ ├── proj-desc.md │ ├── proj.md │ ├── r.md │ ├── readme.md │ ├── release.md │ ├── rename-files.md │ ├── roxygen.md │ ├── rstudio.md │ ├── test.md │ ├── tibble.md │ ├── tidyverse.md │ ├── tutorial.md │ ├── ui-legacy.md │ ├── upkeep.md │ ├── use_import_from.md │ ├── use_standalone.md │ ├── usethis-deprecated.md │ ├── utils-github.md │ ├── utils-ui.md │ ├── utils.md │ ├── version.md │ ├── vignette.md │ └── write.md │ ├── helper-mocks.R │ ├── helper.R │ ├── ref │ ├── README.Rmd │ ├── README.md │ ├── foo-explicit-parent.zip │ ├── foo-implicit-parent.zip │ ├── foo-loose-dropbox.zip │ ├── foo-no-parent.zip │ ├── foo │ │ └── file.txt │ ├── yo-explicit-parent.zip │ ├── yo-implicit-parent.zip │ ├── yo-loose-dropbox.zip │ ├── yo-no-parent.zip │ └── yo │ │ ├── subdir1 │ │ └── file1.txt │ │ └── subdir2 │ │ └── file2.txt │ ├── setup.R │ ├── test-addin.R │ ├── test-air.R │ ├── test-author.R │ ├── test-badge.R │ ├── test-block.R │ ├── test-browse.R │ ├── test-ci.R │ ├── test-citation.R │ ├── test-code-of-conduct.R │ ├── test-course.R │ ├── test-coverage.R │ ├── test-cpp11.R │ ├── test-cran.R │ ├── test-create.R │ ├── test-data-table.R │ ├── test-data.R │ ├── test-description.R │ ├── test-directory.R │ ├── test-documentation.R │ ├── test-edit.R │ ├── test-git-default-branch.R │ ├── test-git.R │ ├── test-github-actions.R │ ├── test-github.R │ ├── test-github_token.R │ ├── test-helpers.R │ ├── test-ignore.R │ ├── test-jenkins.R │ ├── test-latest-dependencies.R │ ├── test-license.R │ ├── test-lifecycle.R │ ├── test-line-ending.R │ ├── test-logo.R │ ├── test-make.R │ ├── test-news.R │ ├── test-package.R │ ├── test-pipe.R │ ├── test-pkgdown.R │ ├── test-proj-desc.R │ ├── test-proj.R │ ├── test-r.R │ ├── test-rcpp.R │ ├── test-readme.R │ ├── test-release.R │ ├── test-rename-files.R │ ├── test-revdep.R │ ├── test-rmarkdown.R │ ├── test-roxygen.R │ ├── test-rstudio.R │ ├── test-template.R │ ├── test-test.R │ ├── test-testthat.R │ ├── test-tibble.R │ ├── test-tidyverse.R │ ├── test-tutorial.R │ ├── test-ui-legacy.R │ ├── test-upkeep.R │ ├── test-use_github_file.R │ ├── test-use_import_from.R │ ├── test-use_standalone.R │ ├── test-usethis-deprecated.R │ ├── test-utils-gh.R │ ├── test-utils-git.R │ ├── test-utils-github.R │ ├── test-utils-glue.R │ ├── test-utils-ui.R │ ├── test-utils.R │ ├── test-version.R │ ├── test-vignette.R │ └── test-write.R ├── usethis.Rproj └── vignettes ├── .gitignore └── articles ├── badge-accessibility.Rmd ├── git-credentials.Rmd ├── img ├── new-personal-access-token-screenshot.png ├── pat-kills-both-birds.jpeg ├── pr-functions-address-comments.png ├── pr-functions-comments.png ├── pr-functions-diff.png └── pr-functions-pull-request.png ├── pr-functions.Rmd ├── ui-cli-conversion.Rmd └── usethis-setup.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.covrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.covrignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/ISSUE_TEMPLATE/issue_template.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/format-suggest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/workflows/format-suggest.yaml -------------------------------------------------------------------------------- /.github/workflows/lint-undesirable-functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/workflows/lint-undesirable-functions.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: usethis authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/addin.R -------------------------------------------------------------------------------- /R/air.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/air.R -------------------------------------------------------------------------------- /R/author.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/author.R -------------------------------------------------------------------------------- /R/badge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/badge.R -------------------------------------------------------------------------------- /R/block.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/block.R -------------------------------------------------------------------------------- /R/browse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/browse.R -------------------------------------------------------------------------------- /R/ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/ci.R -------------------------------------------------------------------------------- /R/citation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/citation.R -------------------------------------------------------------------------------- /R/code-of-conduct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/code-of-conduct.R -------------------------------------------------------------------------------- /R/course.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/course.R -------------------------------------------------------------------------------- /R/coverage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/coverage.R -------------------------------------------------------------------------------- /R/cpp11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/cpp11.R -------------------------------------------------------------------------------- /R/cran.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/cran.R -------------------------------------------------------------------------------- /R/create.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/create.R -------------------------------------------------------------------------------- /R/data-table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/data-table.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/data.R -------------------------------------------------------------------------------- /R/description.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/description.R -------------------------------------------------------------------------------- /R/directory.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/directory.R -------------------------------------------------------------------------------- /R/documentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/documentation.R -------------------------------------------------------------------------------- /R/edit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/edit.R -------------------------------------------------------------------------------- /R/git-default-branch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/git-default-branch.R -------------------------------------------------------------------------------- /R/git.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/git.R -------------------------------------------------------------------------------- /R/github-actions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/github-actions.R -------------------------------------------------------------------------------- /R/github-labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/github-labels.R -------------------------------------------------------------------------------- /R/github-pages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/github-pages.R -------------------------------------------------------------------------------- /R/github.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/github.R -------------------------------------------------------------------------------- /R/github_token.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/github_token.R -------------------------------------------------------------------------------- /R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/helpers.R -------------------------------------------------------------------------------- /R/ignore.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/ignore.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/issue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/issue.R -------------------------------------------------------------------------------- /R/jenkins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/jenkins.R -------------------------------------------------------------------------------- /R/latest-dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/latest-dependencies.R -------------------------------------------------------------------------------- /R/license.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/license.R -------------------------------------------------------------------------------- /R/lifecycle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/lifecycle.R -------------------------------------------------------------------------------- /R/line-ending.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/line-ending.R -------------------------------------------------------------------------------- /R/logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/logo.R -------------------------------------------------------------------------------- /R/make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/make.R -------------------------------------------------------------------------------- /R/namespace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/namespace.R -------------------------------------------------------------------------------- /R/news.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/news.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/package.R -------------------------------------------------------------------------------- /R/pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/pipe.R -------------------------------------------------------------------------------- /R/pkgdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/pkgdown.R -------------------------------------------------------------------------------- /R/positron.R: -------------------------------------------------------------------------------- 1 | is_positron <- function() { 2 | Sys.getenv("POSITRON") == "1" 3 | } 4 | -------------------------------------------------------------------------------- /R/pr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/pr.R -------------------------------------------------------------------------------- /R/proj-desc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/proj-desc.R -------------------------------------------------------------------------------- /R/proj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/proj.R -------------------------------------------------------------------------------- /R/r.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/r.R -------------------------------------------------------------------------------- /R/rcpp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/rcpp.R -------------------------------------------------------------------------------- /R/readme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/readme.R -------------------------------------------------------------------------------- /R/release.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/release.R -------------------------------------------------------------------------------- /R/rename-files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/rename-files.R -------------------------------------------------------------------------------- /R/revdep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/revdep.R -------------------------------------------------------------------------------- /R/rmarkdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/rmarkdown.R -------------------------------------------------------------------------------- /R/roxygen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/roxygen.R -------------------------------------------------------------------------------- /R/rprofile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/rprofile.R -------------------------------------------------------------------------------- /R/rstudio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/rstudio.R -------------------------------------------------------------------------------- /R/sitrep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/sitrep.R -------------------------------------------------------------------------------- /R/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/spelling.R -------------------------------------------------------------------------------- /R/template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/template.R -------------------------------------------------------------------------------- /R/test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/test.R -------------------------------------------------------------------------------- /R/tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/tibble.R -------------------------------------------------------------------------------- /R/tidyverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/tidyverse.R -------------------------------------------------------------------------------- /R/tutorial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/tutorial.R -------------------------------------------------------------------------------- /R/ui-legacy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/ui-legacy.R -------------------------------------------------------------------------------- /R/upkeep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/upkeep.R -------------------------------------------------------------------------------- /R/use-compat-file.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/use_github_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/use_github_file.R -------------------------------------------------------------------------------- /R/use_import_from.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/use_import_from.R -------------------------------------------------------------------------------- /R/use_standalone.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/use_standalone.R -------------------------------------------------------------------------------- /R/usethis-deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/usethis-deprecated.R -------------------------------------------------------------------------------- /R/usethis-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/usethis-package.R -------------------------------------------------------------------------------- /R/utils-gh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/utils-gh.R -------------------------------------------------------------------------------- /R/utils-git.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/utils-git.R -------------------------------------------------------------------------------- /R/utils-github.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/utils-github.R -------------------------------------------------------------------------------- /R/utils-glue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/utils-glue.R -------------------------------------------------------------------------------- /R/utils-rematch2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/utils-rematch2.R -------------------------------------------------------------------------------- /R/utils-roxygen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/utils-roxygen.R -------------------------------------------------------------------------------- /R/utils-ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/utils-ui.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/version.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/version.R -------------------------------------------------------------------------------- /R/vignette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/vignette.R -------------------------------------------------------------------------------- /R/vscode.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/vscode.R -------------------------------------------------------------------------------- /R/write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/R/write.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- 1 | [format] 2 | exclude = [ 3 | "inst/templates/" 4 | ] 5 | -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /inst/templates/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /inst/templates/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /inst/templates/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/Jenkinsfile -------------------------------------------------------------------------------- /inst/templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/Makefile -------------------------------------------------------------------------------- /inst/templates/NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/NEWS.md -------------------------------------------------------------------------------- /inst/templates/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/addins.dcf -------------------------------------------------------------------------------- /inst/templates/article.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/article.Rmd -------------------------------------------------------------------------------- /inst/templates/article.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/article.qmd -------------------------------------------------------------------------------- /inst/templates/circleci-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/circleci-config.yml -------------------------------------------------------------------------------- /inst/templates/citation-template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/citation-template.R -------------------------------------------------------------------------------- /inst/templates/code-cpp11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/code-cpp11.cpp -------------------------------------------------------------------------------- /inst/templates/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/code.c -------------------------------------------------------------------------------- /inst/templates/code.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | using namespace Rcpp; 3 | -------------------------------------------------------------------------------- /inst/templates/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/codecov.yml -------------------------------------------------------------------------------- /inst/templates/cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/cran-comments.md -------------------------------------------------------------------------------- /inst/templates/gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/gitlab-ci.yml -------------------------------------------------------------------------------- /inst/templates/junit-testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/junit-testthat.R -------------------------------------------------------------------------------- /inst/templates/license-AGPL-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-AGPL-3.md -------------------------------------------------------------------------------- /inst/templates/license-GPL-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-GPL-2.md -------------------------------------------------------------------------------- /inst/templates/license-GPL-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-GPL-3.md -------------------------------------------------------------------------------- /inst/templates/license-LGPL-2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-LGPL-2.1.md -------------------------------------------------------------------------------- /inst/templates/license-LGPL-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-LGPL-3.md -------------------------------------------------------------------------------- /inst/templates/license-apache-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-apache-2.md -------------------------------------------------------------------------------- /inst/templates/license-cc0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-cc0.md -------------------------------------------------------------------------------- /inst/templates/license-ccby-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-ccby-4.md -------------------------------------------------------------------------------- /inst/templates/license-mit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-mit.md -------------------------------------------------------------------------------- /inst/templates/license-proprietary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/license-proprietary.txt -------------------------------------------------------------------------------- /inst/templates/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /inst/templates/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/lifecycle-experimental.svg -------------------------------------------------------------------------------- /inst/templates/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/lifecycle-stable.svg -------------------------------------------------------------------------------- /inst/templates/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/lifecycle-superseded.svg -------------------------------------------------------------------------------- /inst/templates/package-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/package-README -------------------------------------------------------------------------------- /inst/templates/packagename-data-prep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/packagename-data-prep.R -------------------------------------------------------------------------------- /inst/templates/packagename-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/packagename-package.R -------------------------------------------------------------------------------- /inst/templates/pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/pipe.R -------------------------------------------------------------------------------- /inst/templates/project-README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/project-README -------------------------------------------------------------------------------- /inst/templates/readme-rmd-pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/readme-rmd-pre-commit.sh -------------------------------------------------------------------------------- /inst/templates/rmarkdown-template.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/rmarkdown-template.Rmd -------------------------------------------------------------------------------- /inst/templates/rmarkdown-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/rmarkdown-template.yml -------------------------------------------------------------------------------- /inst/templates/template.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/template.Rproj -------------------------------------------------------------------------------- /inst/templates/test-example-2.1.R: -------------------------------------------------------------------------------- 1 | test_that("multiplication works", { 2 | expect_equal(2 * 2, 4) 3 | }) 4 | -------------------------------------------------------------------------------- /inst/templates/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/testthat.R -------------------------------------------------------------------------------- /inst/templates/tidy-contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/tidy-contributing.md -------------------------------------------------------------------------------- /inst/templates/tidy-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/tidy-issue.md -------------------------------------------------------------------------------- /inst/templates/tidy-support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/tidy-support.md -------------------------------------------------------------------------------- /inst/templates/tutorial-template.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/tutorial-template.Rmd -------------------------------------------------------------------------------- /inst/templates/vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/vignette.Rmd -------------------------------------------------------------------------------- /inst/templates/vignette.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/vignette.qmd -------------------------------------------------------------------------------- /inst/templates/vscode-c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/vscode-c_cpp_properties.json -------------------------------------------------------------------------------- /inst/templates/vscode-debug.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/vscode-debug.R -------------------------------------------------------------------------------- /inst/templates/vscode-launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/vscode-launch.json -------------------------------------------------------------------------------- /inst/templates/year-copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/inst/templates/year-copyright.txt -------------------------------------------------------------------------------- /man/badges.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/badges.Rd -------------------------------------------------------------------------------- /man/browse-this.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/browse-this.Rd -------------------------------------------------------------------------------- /man/create_from_github.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/create_from_github.Rd -------------------------------------------------------------------------------- /man/create_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/create_package.Rd -------------------------------------------------------------------------------- /man/edit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/edit.Rd -------------------------------------------------------------------------------- /man/edit_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/edit_file.Rd -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/git-default-branch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/git-default-branch.Rd -------------------------------------------------------------------------------- /man/git_protocol.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/git_protocol.Rd -------------------------------------------------------------------------------- /man/git_sitrep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/git_sitrep.Rd -------------------------------------------------------------------------------- /man/git_vaccinate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/git_vaccinate.Rd -------------------------------------------------------------------------------- /man/github-token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/github-token.Rd -------------------------------------------------------------------------------- /man/issue-this.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/issue-this.Rd -------------------------------------------------------------------------------- /man/licenses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/licenses.Rd -------------------------------------------------------------------------------- /man/proj_activate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/proj_activate.Rd -------------------------------------------------------------------------------- /man/proj_sitrep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/proj_sitrep.Rd -------------------------------------------------------------------------------- /man/proj_utils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/proj_utils.Rd -------------------------------------------------------------------------------- /man/pull-requests.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/pull-requests.Rd -------------------------------------------------------------------------------- /man/rename_files.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/rename_files.Rd -------------------------------------------------------------------------------- /man/roxygen/templates/double-auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/roxygen/templates/double-auth.R -------------------------------------------------------------------------------- /man/rprofile-helper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/rprofile-helper.Rd -------------------------------------------------------------------------------- /man/tidy-deprecated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/tidy-deprecated.Rd -------------------------------------------------------------------------------- /man/tidyverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/tidyverse.Rd -------------------------------------------------------------------------------- /man/ui-legacy-functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/ui-legacy-functions.Rd -------------------------------------------------------------------------------- /man/ui-questions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/ui-questions.Rd -------------------------------------------------------------------------------- /man/ui_silence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/ui_silence.Rd -------------------------------------------------------------------------------- /man/use_addin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_addin.Rd -------------------------------------------------------------------------------- /man/use_air.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_air.Rd -------------------------------------------------------------------------------- /man/use_author.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_author.Rd -------------------------------------------------------------------------------- /man/use_blank_slate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_blank_slate.Rd -------------------------------------------------------------------------------- /man/use_build_ignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_build_ignore.Rd -------------------------------------------------------------------------------- /man/use_citation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_citation.Rd -------------------------------------------------------------------------------- /man/use_code_of_conduct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_code_of_conduct.Rd -------------------------------------------------------------------------------- /man/use_course_details.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_course_details.Rd -------------------------------------------------------------------------------- /man/use_coverage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_coverage.Rd -------------------------------------------------------------------------------- /man/use_cpp11.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_cpp11.Rd -------------------------------------------------------------------------------- /man/use_cran_comments.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_cran_comments.Rd -------------------------------------------------------------------------------- /man/use_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_data.Rd -------------------------------------------------------------------------------- /man/use_data_table.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_data_table.Rd -------------------------------------------------------------------------------- /man/use_description.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_description.Rd -------------------------------------------------------------------------------- /man/use_directory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_directory.Rd -------------------------------------------------------------------------------- /man/use_git.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_git.Rd -------------------------------------------------------------------------------- /man/use_git_config.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_git_config.Rd -------------------------------------------------------------------------------- /man/use_git_hook.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_git_hook.Rd -------------------------------------------------------------------------------- /man/use_git_ignore.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_git_ignore.Rd -------------------------------------------------------------------------------- /man/use_git_remote.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_git_remote.Rd -------------------------------------------------------------------------------- /man/use_github.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_github.Rd -------------------------------------------------------------------------------- /man/use_github_action.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_github_action.Rd -------------------------------------------------------------------------------- /man/use_github_actions_badge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_github_actions_badge.Rd -------------------------------------------------------------------------------- /man/use_github_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_github_file.Rd -------------------------------------------------------------------------------- /man/use_github_labels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_github_labels.Rd -------------------------------------------------------------------------------- /man/use_github_links.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_github_links.Rd -------------------------------------------------------------------------------- /man/use_github_pages.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_github_pages.Rd -------------------------------------------------------------------------------- /man/use_github_release.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_github_release.Rd -------------------------------------------------------------------------------- /man/use_gitlab_ci.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_gitlab_ci.Rd -------------------------------------------------------------------------------- /man/use_import_from.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_import_from.Rd -------------------------------------------------------------------------------- /man/use_jenkins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_jenkins.Rd -------------------------------------------------------------------------------- /man/use_latest_dependencies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_latest_dependencies.Rd -------------------------------------------------------------------------------- /man/use_lifecycle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_lifecycle.Rd -------------------------------------------------------------------------------- /man/use_logo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_logo.Rd -------------------------------------------------------------------------------- /man/use_make.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_make.Rd -------------------------------------------------------------------------------- /man/use_namespace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_namespace.Rd -------------------------------------------------------------------------------- /man/use_news_md.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_news_md.Rd -------------------------------------------------------------------------------- /man/use_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_package.Rd -------------------------------------------------------------------------------- /man/use_package_doc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_package_doc.Rd -------------------------------------------------------------------------------- /man/use_pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_pipe.Rd -------------------------------------------------------------------------------- /man/use_pkgdown.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_pkgdown.Rd -------------------------------------------------------------------------------- /man/use_r.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_r.Rd -------------------------------------------------------------------------------- /man/use_rcpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_rcpp.Rd -------------------------------------------------------------------------------- /man/use_readme_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_readme_rmd.Rd -------------------------------------------------------------------------------- /man/use_release_issue.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_release_issue.Rd -------------------------------------------------------------------------------- /man/use_revdep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_revdep.Rd -------------------------------------------------------------------------------- /man/use_rmarkdown_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_rmarkdown_template.Rd -------------------------------------------------------------------------------- /man/use_roxygen_md.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_roxygen_md.Rd -------------------------------------------------------------------------------- /man/use_rstudio.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_rstudio.Rd -------------------------------------------------------------------------------- /man/use_rstudio_preferences.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_rstudio_preferences.Rd -------------------------------------------------------------------------------- /man/use_spell_check.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_spell_check.Rd -------------------------------------------------------------------------------- /man/use_standalone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_standalone.Rd -------------------------------------------------------------------------------- /man/use_template.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_template.Rd -------------------------------------------------------------------------------- /man/use_test_helper.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_test_helper.Rd -------------------------------------------------------------------------------- /man/use_testthat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_testthat.Rd -------------------------------------------------------------------------------- /man/use_tibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_tibble.Rd -------------------------------------------------------------------------------- /man/use_tidy_thanks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_tidy_thanks.Rd -------------------------------------------------------------------------------- /man/use_tutorial.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_tutorial.Rd -------------------------------------------------------------------------------- /man/use_upkeep_issue.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_upkeep_issue.Rd -------------------------------------------------------------------------------- /man/use_version.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_version.Rd -------------------------------------------------------------------------------- /man/use_vignette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/use_vignette.Rd -------------------------------------------------------------------------------- /man/usethis-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/usethis-package.Rd -------------------------------------------------------------------------------- /man/usethis_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/usethis_options.Rd -------------------------------------------------------------------------------- /man/write-this.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/write-this.Rd -------------------------------------------------------------------------------- /man/zip-utils.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/man/zip-utils.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /principles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/principles.md -------------------------------------------------------------------------------- /revdep/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/revdep/.gitignore -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/revdep/problems.md -------------------------------------------------------------------------------- /tests/manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/README.md -------------------------------------------------------------------------------- /tests/manual/manual-create-from-github-private-repo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-create-from-github-private-repo.R -------------------------------------------------------------------------------- /tests/manual/manual-create-from-github.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-create-from-github.R -------------------------------------------------------------------------------- /tests/manual/manual-fork-upstream-is-not-origin-parent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-fork-upstream-is-not-origin-parent.R -------------------------------------------------------------------------------- /tests/manual/manual-git-sitrep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-git-sitrep.R -------------------------------------------------------------------------------- /tests/manual/manual-list-ghe-repos.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-list-ghe-repos.R -------------------------------------------------------------------------------- /tests/manual/manual-pr-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-pr-functions.R -------------------------------------------------------------------------------- /tests/manual/manual-upstream-only.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-upstream-only.R -------------------------------------------------------------------------------- /tests/manual/manual-use-course.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-use-course.R -------------------------------------------------------------------------------- /tests/manual/manual-use-github-enterprise.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-use-github-enterprise.R -------------------------------------------------------------------------------- /tests/manual/manual-use-github-pages.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-use-github-pages.R -------------------------------------------------------------------------------- /tests/manual/manual-use-github.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-use-github.R -------------------------------------------------------------------------------- /tests/manual/manual-use-tidy-pkgdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-use-tidy-pkgdown.R -------------------------------------------------------------------------------- /tests/manual/manual-use-tidy-thanks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/manual/manual-use-tidy-thanks.R -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/air.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/air.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/author.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/author.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/badge.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/course.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/course.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/coverage.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/cpp11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/cpp11.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/data-table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/data-table.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/edit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/edit.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/git-default-branch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/git-default-branch.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/github-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/github-actions.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/github.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/helpers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/helpers.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/lifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/lifecycle.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/logo.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/news.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/news.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/package.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/pipe.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/pkgdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/pkgdown.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/proj-desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/proj-desc.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/proj.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/proj.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/r.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/readme.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/release.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rename-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/rename-files.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/roxygen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/roxygen.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/rstudio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/rstudio.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/test.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/tibble.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/tibble.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/tidyverse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/tidyverse.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/tutorial.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/ui-legacy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/ui-legacy.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/upkeep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/upkeep.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/use_import_from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/use_import_from.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/use_standalone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/use_standalone.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/usethis-deprecated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/usethis-deprecated.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/utils-github.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils-ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/utils-ui.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/utils.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/version.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/vignette.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/vignette.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/_snaps/write.md -------------------------------------------------------------------------------- /tests/testthat/helper-mocks.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/helper-mocks.R -------------------------------------------------------------------------------- /tests/testthat/helper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/helper.R -------------------------------------------------------------------------------- /tests/testthat/ref/README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/README.Rmd -------------------------------------------------------------------------------- /tests/testthat/ref/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/README.md -------------------------------------------------------------------------------- /tests/testthat/ref/foo-explicit-parent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/foo-explicit-parent.zip -------------------------------------------------------------------------------- /tests/testthat/ref/foo-implicit-parent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/foo-implicit-parent.zip -------------------------------------------------------------------------------- /tests/testthat/ref/foo-loose-dropbox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/foo-loose-dropbox.zip -------------------------------------------------------------------------------- /tests/testthat/ref/foo-no-parent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/foo-no-parent.zip -------------------------------------------------------------------------------- /tests/testthat/ref/foo/file.txt: -------------------------------------------------------------------------------- 1 | I am file.txt which lives inside foo/ 2 | -------------------------------------------------------------------------------- /tests/testthat/ref/yo-explicit-parent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/yo-explicit-parent.zip -------------------------------------------------------------------------------- /tests/testthat/ref/yo-implicit-parent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/yo-implicit-parent.zip -------------------------------------------------------------------------------- /tests/testthat/ref/yo-loose-dropbox.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/yo-loose-dropbox.zip -------------------------------------------------------------------------------- /tests/testthat/ref/yo-no-parent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/ref/yo-no-parent.zip -------------------------------------------------------------------------------- /tests/testthat/ref/yo/subdir1/file1.txt: -------------------------------------------------------------------------------- 1 | I am file1.txt, located below yo/subdir1/ 2 | -------------------------------------------------------------------------------- /tests/testthat/ref/yo/subdir2/file2.txt: -------------------------------------------------------------------------------- 1 | I am file2.txt, located below yo/subdir2/ 2 | -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test-addin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-addin.R -------------------------------------------------------------------------------- /tests/testthat/test-air.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-air.R -------------------------------------------------------------------------------- /tests/testthat/test-author.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-author.R -------------------------------------------------------------------------------- /tests/testthat/test-badge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-badge.R -------------------------------------------------------------------------------- /tests/testthat/test-block.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-block.R -------------------------------------------------------------------------------- /tests/testthat/test-browse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-browse.R -------------------------------------------------------------------------------- /tests/testthat/test-ci.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-ci.R -------------------------------------------------------------------------------- /tests/testthat/test-citation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-citation.R -------------------------------------------------------------------------------- /tests/testthat/test-code-of-conduct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-code-of-conduct.R -------------------------------------------------------------------------------- /tests/testthat/test-course.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-course.R -------------------------------------------------------------------------------- /tests/testthat/test-coverage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-coverage.R -------------------------------------------------------------------------------- /tests/testthat/test-cpp11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-cpp11.R -------------------------------------------------------------------------------- /tests/testthat/test-cran.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-cran.R -------------------------------------------------------------------------------- /tests/testthat/test-create.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-create.R -------------------------------------------------------------------------------- /tests/testthat/test-data-table.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-data-table.R -------------------------------------------------------------------------------- /tests/testthat/test-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-data.R -------------------------------------------------------------------------------- /tests/testthat/test-description.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-description.R -------------------------------------------------------------------------------- /tests/testthat/test-directory.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-directory.R -------------------------------------------------------------------------------- /tests/testthat/test-documentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-documentation.R -------------------------------------------------------------------------------- /tests/testthat/test-edit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-edit.R -------------------------------------------------------------------------------- /tests/testthat/test-git-default-branch.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-git-default-branch.R -------------------------------------------------------------------------------- /tests/testthat/test-git.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-git.R -------------------------------------------------------------------------------- /tests/testthat/test-github-actions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-github-actions.R -------------------------------------------------------------------------------- /tests/testthat/test-github.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-github.R -------------------------------------------------------------------------------- /tests/testthat/test-github_token.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-github_token.R -------------------------------------------------------------------------------- /tests/testthat/test-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-ignore.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-ignore.R -------------------------------------------------------------------------------- /tests/testthat/test-jenkins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-jenkins.R -------------------------------------------------------------------------------- /tests/testthat/test-latest-dependencies.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-latest-dependencies.R -------------------------------------------------------------------------------- /tests/testthat/test-license.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-license.R -------------------------------------------------------------------------------- /tests/testthat/test-lifecycle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-lifecycle.R -------------------------------------------------------------------------------- /tests/testthat/test-line-ending.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-line-ending.R -------------------------------------------------------------------------------- /tests/testthat/test-logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-logo.R -------------------------------------------------------------------------------- /tests/testthat/test-make.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-make.R -------------------------------------------------------------------------------- /tests/testthat/test-news.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-news.R -------------------------------------------------------------------------------- /tests/testthat/test-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-package.R -------------------------------------------------------------------------------- /tests/testthat/test-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-pipe.R -------------------------------------------------------------------------------- /tests/testthat/test-pkgdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-pkgdown.R -------------------------------------------------------------------------------- /tests/testthat/test-proj-desc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-proj-desc.R -------------------------------------------------------------------------------- /tests/testthat/test-proj.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-proj.R -------------------------------------------------------------------------------- /tests/testthat/test-r.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-r.R -------------------------------------------------------------------------------- /tests/testthat/test-rcpp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-rcpp.R -------------------------------------------------------------------------------- /tests/testthat/test-readme.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-readme.R -------------------------------------------------------------------------------- /tests/testthat/test-release.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-release.R -------------------------------------------------------------------------------- /tests/testthat/test-rename-files.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-rename-files.R -------------------------------------------------------------------------------- /tests/testthat/test-revdep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-revdep.R -------------------------------------------------------------------------------- /tests/testthat/test-rmarkdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-rmarkdown.R -------------------------------------------------------------------------------- /tests/testthat/test-roxygen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-roxygen.R -------------------------------------------------------------------------------- /tests/testthat/test-rstudio.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-rstudio.R -------------------------------------------------------------------------------- /tests/testthat/test-template.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-template.R -------------------------------------------------------------------------------- /tests/testthat/test-test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-test.R -------------------------------------------------------------------------------- /tests/testthat/test-testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-tibble.R -------------------------------------------------------------------------------- /tests/testthat/test-tidyverse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-tidyverse.R -------------------------------------------------------------------------------- /tests/testthat/test-tutorial.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-tutorial.R -------------------------------------------------------------------------------- /tests/testthat/test-ui-legacy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-ui-legacy.R -------------------------------------------------------------------------------- /tests/testthat/test-upkeep.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-upkeep.R -------------------------------------------------------------------------------- /tests/testthat/test-use_github_file.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-use_github_file.R -------------------------------------------------------------------------------- /tests/testthat/test-use_import_from.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-use_import_from.R -------------------------------------------------------------------------------- /tests/testthat/test-use_standalone.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-use_standalone.R -------------------------------------------------------------------------------- /tests/testthat/test-usethis-deprecated.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-usethis-deprecated.R -------------------------------------------------------------------------------- /tests/testthat/test-utils-gh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-utils-gh.R -------------------------------------------------------------------------------- /tests/testthat/test-utils-git.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-utils-git.R -------------------------------------------------------------------------------- /tests/testthat/test-utils-github.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-utils-github.R -------------------------------------------------------------------------------- /tests/testthat/test-utils-glue.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-utils-glue.R -------------------------------------------------------------------------------- /tests/testthat/test-utils-ui.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-utils-ui.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /tests/testthat/test-version.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-version.R -------------------------------------------------------------------------------- /tests/testthat/test-vignette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-vignette.R -------------------------------------------------------------------------------- /tests/testthat/test-write.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/tests/testthat/test-write.R -------------------------------------------------------------------------------- /usethis.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/usethis.Rproj -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/badge-accessibility.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/badge-accessibility.Rmd -------------------------------------------------------------------------------- /vignettes/articles/git-credentials.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/git-credentials.Rmd -------------------------------------------------------------------------------- /vignettes/articles/img/new-personal-access-token-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/img/new-personal-access-token-screenshot.png -------------------------------------------------------------------------------- /vignettes/articles/img/pat-kills-both-birds.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/img/pat-kills-both-birds.jpeg -------------------------------------------------------------------------------- /vignettes/articles/img/pr-functions-address-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/img/pr-functions-address-comments.png -------------------------------------------------------------------------------- /vignettes/articles/img/pr-functions-comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/img/pr-functions-comments.png -------------------------------------------------------------------------------- /vignettes/articles/img/pr-functions-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/img/pr-functions-diff.png -------------------------------------------------------------------------------- /vignettes/articles/img/pr-functions-pull-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/img/pr-functions-pull-request.png -------------------------------------------------------------------------------- /vignettes/articles/pr-functions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/pr-functions.Rmd -------------------------------------------------------------------------------- /vignettes/articles/ui-cli-conversion.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/ui-cli-conversion.Rmd -------------------------------------------------------------------------------- /vignettes/articles/usethis-setup.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r-lib/usethis/HEAD/vignettes/articles/usethis-setup.Rmd --------------------------------------------------------------------------------