You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vignettes/programming_strategy.Rmd
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -577,18 +577,18 @@ All empty strings that originate like this need to be converted to proper R miss
577
577
578
578
The table below describes the key directories and files in the repository. Understanding this layout helps contributors know where to find and where to place code.
579
579
580
-
| Directory / File| Purpose |
581
-
|-----------------------|---------|
582
-
|`R/`| R source files containing package functions. File names reflect their contents (see [File Structuring](#file-structuring) below). |
583
-
|`man/`| Auto-generated Rd documentation files. **Do not edit manually.** Run `devtools::document()` to regenerate. |
584
-
|`tests/testthat/`| Unit test scripts. Each file follows the naming convention `test-<source_file>.R`. |
585
-
|`vignettes/`| Developer-facing guidance vignettes (and any user-facing articles). |
586
-
|`inst/lintr/`| Linting helpers/configuration used by `.lintr.R` (e.g., sourced via `system.file(...)`). |
587
-
|`inst/templates/`| ADaM R script templates made available to users. |
588
-
|`NAMESPACE`| Auto-generated export/import declarations. **Do not edit manually.** Run `devtools::document()`. |
589
-
|`NEWS.md`| Package changelog. Updated with every user-facing change per PR. |
590
-
|`DESCRIPTION`| Package metadata and dependency declarations (`Imports`, `Suggests`). |
591
-
|`_pkgdown.yml`| Configuration for the package website built by `{pkgdown}`. |
580
+
| Directory or File | Purpose |
581
+
| :-- | :----|
582
+
|`R/`| R source files containing package functions. File names reflect their contents (see [File Structuring](#file-structuring) below). |
583
+
|`man/`| Auto-generated Rd documentation files. **Do not edit manually.** Run `devtools::document()` to regenerate. |
584
+
|`tests/testthat/`| Unit test scripts. Each file follows the naming convention `test-<source_file>.R`. |
585
+
|`vignettes/`| Developer-facing guidance vignettes (and any user-facing articles). |
586
+
|`inst/lintr/`| Linting helpers/configuration used by `.lintr.R` (e.g., sourced via `system.file(...)`). |
587
+
|`inst/templates/`| ADaM R script templates made available to users. |
588
+
|`NAMESPACE`| Auto-generated export/import declarations. **Do not edit manually.** Run `devtools::document()`. |
589
+
|`NEWS.md`| Package changelog. Updated with every user-facing change per PR. |
590
+
|`DESCRIPTION`| Package metadata and dependency declarations (`Imports`, `Suggests`). |
591
+
|`_pkgdown.yml`| Configuration for the package website built by `{pkgdown}`. |
0 commit comments