Skip to content

Commit

Permalink
Add configuration section
Browse files Browse the repository at this point in the history
ref #5
  • Loading branch information
wibeasley committed Dec 31, 2021
1 parent 79983ce commit 73d3cf9
Show file tree
Hide file tree
Showing 3 changed files with 206 additions and 6 deletions.
23 changes: 23 additions & 0 deletions inst/report-templates/rmarkdown-1/report-1.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -286,3 +286,26 @@ cat(sprintf("1. %s;", checks$smells_inactive$check_name), sep = "\n")

To enable/disable a smell, set the `active` element in the yaml checks file to "true" or "false".
</div>

Configuration {.tabset .tabset-fade}
=============================

For the sake of documentation and reproducibility, the current report was rendered in the following environment. Click the line below to expand.

<details>
<summary>Environment <span class="glyphicon glyphicon-plus-sign"></span></summary>
```{r session-info, echo=FALSE}
if( requireNamespace("sessioninfo", quietly = TRUE) ) {
sessioninfo::session_info()
} else {
sessionInfo()
}
```
</details>

```{r session-duration, echo=FALSE}
report_render_duration_in_seconds <- as.integer(difftime(Sys.time(), report_render_start_time, units="secs"))
```

Report rendered by `r Sys.info()["user"]` at `r strftime(Sys.time(), "%Y-%m-%d, %H:%M %z")` in `r report_render_duration_in_seconds` seconds.

Loading

0 comments on commit 73d3cf9

Please sign in to comment.