Skip to content

Commit

Permalink
filter "Lost braces"
Browse files Browse the repository at this point in the history
  • Loading branch information
sorhawell committed Oct 15, 2023
1 parent 01ad69b commit 8ff1dab
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion inst/misc/filter_rcmdcheck.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,14 @@ ignore_rules = list(
}
),
warnings = list(),
errors = list()
errors = list(

#R4.3.x devel now requires no unquoted braces '{' in docs. This filter turns off that error
# until fixed likely via PR #424
ignore_lost_braces = function(msg) {
isTRUE(grepl("Lost braces",msg))
}
)
)


Expand Down

0 comments on commit 8ff1dab

Please sign in to comment.