Skip to content

Commit

Permalink
trailing commas lint in e2etest app files
Browse files Browse the repository at this point in the history
  • Loading branch information
radbasa committed Jan 12, 2024
1 parent 370b84f commit 516a98e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/e2e/app-files/hello.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ box::use(
],
)

box::use(app/logic/say_hello[say_hello])
box::use(app/logic/say_hello[say_hello], )

#' @export
ui <- function(id) {
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/app-files/main.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ box::use(
shiny,
)

box::use(app/view/hello)
box::use(app/view/hello, )

Box <- react_component("Box") # nolint object_name_linter

Expand Down

0 comments on commit 516a98e

Please sign in to comment.