From a32e85ef0fc0e5d7c59080d3aa0e8add16296ed2 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Fri, 16 Sep 2022 12:53:13 -0700 Subject: [PATCH] move NEWS item about sarif_output() to the correct release (#1537) --- NEWS.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index c370a321f..64d5e7b56 100644 --- a/NEWS.md +++ b/NEWS.md @@ -38,7 +38,9 @@ * New `allow_trailing` argument added to `assignment_linter()` to check when assignment operators are at the end of a line, and the value is on the following line (#1491, @ashbaldry) - + +* New `sarif_output()` function to output lints to SARIF output (#1424, @shaopeng-gh) + ## New features * `commented_code_linter()` now lints commented argument code, containing a trailing comma, as well (#386, @AshesITR). @@ -345,7 +347,6 @@ of general interest to the broader R community. More will be included in future + Added the linter name to lintrs output to facilitate discovery of the correct name (#1357, @AshesITR). * Improved S3 generic detection for non-standard S3 generics where `UseMethod()` is called after several preceding expressions (#846, @jonkeane). -* New `sarif_output()` function to output lints to SARIF output (#1424, @shaopeng-gh) * `extraction_operator_linter()`: no longer lint `x[NULL]` (#1273, @AshesITR). * `is_lint_level()`: new exported helper for readably explaining which type of expression is required for a custom linter. Some linters are written to require the full file's parse tree (for example, `single_quotes_linter()`).