Skip to content

Commit

Permalink
Update affiliation in JOSS paper (#2712)
Browse files Browse the repository at this point in the history
  • Loading branch information
IndrajeetPatil authored Feb 3, 2025
1 parent b6d945d commit dbfe81b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
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.
```

- **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

0 comments on commit dbfe81b

Please sign in to comment.