Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing character issue in JOSS's PDF output #2669

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading