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

Update affiliation in JOSS paper #2712

Merged
merged 1 commit into from
Feb 3, 2025
Merged
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
2 changes: 1 addition & 1 deletion paper/paper.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ affiliations:
- index: 3
name: Mathematisches Institut der Heinrich-Heine-Universität Düsseldorf
- index: 4
name: Preisenergie GmbH, Munich, Germany
name: Carl Zeiss AG, Germany
- index: 5
name: Jumping Rivers
- index: 6
Expand Down
9 changes: 7 additions & 2 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-12-02"
date: "2025-02-01"
tags: ["R", "linter", "tidyverse"]
authors:
- name: Jim Hester
Expand Down Expand Up @@ -32,7 +32,7 @@ affiliations:
- index: 3
name: Mathematisches Institut der Heinrich-Heine-Universität Düsseldorf
- index: 4
name: Preisenergie GmbH, Munich, Germany
name: Carl Zeiss AG, Germany
- index: 5
name: Jumping Rivers
- index: 6
Expand Down Expand Up @@ -123,6 +123,7 @@ lint(
text = "x >= 2.5",
linters = redundant_ifelse_linter()
)
#> i No lints found.
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is expected: #2643

```

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

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

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

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

- Create new linters (by leveraging functions like
Expand Down
Loading