diff --git a/antidotum/tergo/DESCRIPTION b/antidotum/tergo/DESCRIPTION index 3135b614..19a33b09 100644 --- a/antidotum/tergo/DESCRIPTION +++ b/antidotum/tergo/DESCRIPTION @@ -1,6 +1,6 @@ Package: tergo Title: Style Your Code Fast -Version: 0.1.7.9000 +Version: 0.1.8 Authors@R: c( person("Konrad", "Pagacz", , "konrad.pagacz@gmail.com", role = c("aut", "cre")), @@ -10,9 +10,9 @@ Authors@R: ) Description: Provides a set of functions that allow users for styling their R code according to - the `tidyverse` style guide. The package uses a native + the 'tidyverse' style guide. The package uses a native Rust implementation to ensure the highest performance. - Learn more about `tergo` at . + Learn more about 'tergo' at . License: MIT + file LICENSE Encoding: UTF-8 Roxygen: list(markdown = TRUE) diff --git a/antidotum/tergo/R/addins.R b/antidotum/tergo/R/addins.R index a01dd449..4b4c25db 100644 --- a/antidotum/tergo/R/addins.R +++ b/antidotum/tergo/R/addins.R @@ -103,3 +103,4 @@ style_selection_addin <- function() { rstudioapi::documentSave(context$id) invisible(NULL) } + diff --git a/antidotum/tergo/R/extendr-wrappers.R b/antidotum/tergo/R/extendr-wrappers.R index b3414892..79cb0de1 100644 --- a/antidotum/tergo/R/extendr-wrappers.R +++ b/antidotum/tergo/R/extendr-wrappers.R @@ -59,3 +59,4 @@ get_config <- function(path) .Call(wrap__get_config, path) get_default_config <- function() .Call(wrap__get_default_config) # nolint end + diff --git a/antidotum/tergo/R/styling.R b/antidotum/tergo/R/styling.R index b20973a7..47675521 100644 --- a/antidotum/tergo/R/styling.R +++ b/antidotum/tergo/R/styling.R @@ -209,3 +209,4 @@ style_text <- function(text, configuration = list()) { USE.NAMES = FALSE ) } + diff --git a/antidotum/tergo/R/tergo.R b/antidotum/tergo/R/tergo.R index e2c5435c..bd37ea95 100644 --- a/antidotum/tergo/R/tergo.R +++ b/antidotum/tergo/R/tergo.R @@ -2,3 +2,4 @@ #' #' @keywords internal "_PACKAGE" + diff --git a/antidotum/tergo/man/tergo-package.Rd b/antidotum/tergo/man/tergo-package.Rd index 3f5d660e..6a077d02 100644 --- a/antidotum/tergo/man/tergo-package.Rd +++ b/antidotum/tergo/man/tergo-package.Rd @@ -6,7 +6,7 @@ \alias{tergo-package} \title{A library to make your source code pretty.} \description{ -Provides a set of functions that allow users for styling their R code according to the `tidyverse` style guide. The package uses a native Rust implementation to ensure the highest performance. Learn more about `tergo` at \url{https://rtergo.pagacz.io}. +Provides a set of functions that allow users for styling their R code according to the 'tidyverse' style guide. The package uses a native Rust implementation to ensure the highest performance. Learn more about 'tergo' at \url{https://rtergo.pagacz.io}. } \seealso{ Useful links: diff --git a/antidotum/tergo/vignettes/styling_with_tergo.Rmd b/antidotum/tergo/vignettes/styling_with_tergo.Rmd index a59114a9..2bb42920 100644 --- a/antidotum/tergo/vignettes/styling_with_tergo.Rmd +++ b/antidotum/tergo/vignettes/styling_with_tergo.Rmd @@ -18,7 +18,7 @@ knitr::opts_chunk$set( library(tergo) ``` -# Get Started with `tergo` +# Get Started with `tergo` `tergo` is a lightning-fast R code formatter powered by Rust, designed for developers who prioritize speed and efficiency. Whether you're optimizing CI pipelines or building responsive developer tools, `tergo` reformats R code in milliseconds. @@ -111,5 +111,3 @@ tergo::style(config = "path/to/alternate.toml") • Visit [GitHub repository](https://github.com/kpagacz/tergo) for issue tracking • Experiment with different `.toml` configurations to match your team's style guide ``` - -This vignette emphasizes speed comparisons through concrete multipliers ("100-1000x faster"), provides immediate copy-paste examples, and uses tables for configuration clarity. The structure guides users from installation to advanced features while maintaining visual scanability.