Skip to content

Commit

Permalink
Fix missing character issue in JOSS's PDF output
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil committed Oct 3, 2024
1 parent 1db7cc7 commit 0d55aa0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion paper/paper.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ knitr::opts_chunk$set(
library(lintr)
withr::local_options(list(
lintr.format_width = 60L
lintr.format_width = 60L,
cli.condition_unicode_bullets = FALSE
))
```

Expand Down
12 changes: 6 additions & 6 deletions paper/paper.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: "Static Code Analysis for R"
date: "2024-10-02"
date: "2024-10-03"
tags: ["R", "linter", "tidyverse"]
authors:
- name: Jim Hester
Expand Down Expand Up @@ -120,7 +120,7 @@ lint(
text = "x >= 2.5",
linters = redundant_ifelse_linter()
)
#> No lints found.
#> i No lints found.
```

- **Efficiency**
Expand Down Expand Up @@ -153,7 +153,7 @@ lint(
text = "anyNA(x)",
linters = any_is_na_linter()
)
#> No lints found.
#> i No lints found.
```

- **Readability**
Expand Down Expand Up @@ -186,7 +186,7 @@ lint(
text = "x != 2",
linters = comparison_negation_linter()
)
#> No lints found.
#> i No lints found.
```

- **Tidyverse style**
Expand Down Expand Up @@ -214,7 +214,7 @@ lint(
text = "my_var <- 1L",
linters = object_name_linter()
)
#> No lints found.
#> i No lints found.
```

- **Common mistakes**
Expand Down Expand Up @@ -288,7 +288,7 @@ lint(
text = "my.var <- 1L",
linters = object_name_linter(styles = "dotted.case")
)
#> No lints found.
#> i No lints found.
```

- Create new linters (by leveraging functions like
Expand Down

0 comments on commit 0d55aa0

Please sign in to comment.