From 64317d26c9011ddaaecc4df9bcb2fdbb2a6207d1 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Wed, 14 Aug 2024 18:42:55 +0000 Subject: [PATCH 1/2] Ignore unintended_html_in_doc_comment Wait for the false positives to be resolved. https://github.com/dart-lang/sdk/issues/56465 Referring to an exception with a generic worth specifying for the first time in a doc seems to me to be a valid reason to use this pattern. --- pkgs/graphs/CHANGELOG.md | 2 ++ pkgs/graphs/analysis_options.yaml | 1 + pkgs/graphs/pubspec.yaml | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/graphs/CHANGELOG.md b/pkgs/graphs/CHANGELOG.md index 6d0c36c7e..314ec1b73 100644 --- a/pkgs/graphs/CHANGELOG.md +++ b/pkgs/graphs/CHANGELOG.md @@ -1,3 +1,5 @@ +## 2.3.3-wip + ## 2.3.2 - Require Dart 3.4 diff --git a/pkgs/graphs/analysis_options.yaml b/pkgs/graphs/analysis_options.yaml index 872953afe..0e3a99607 100644 --- a/pkgs/graphs/analysis_options.yaml +++ b/pkgs/graphs/analysis_options.yaml @@ -6,6 +6,7 @@ analyzer: strict-raw-types: true errors: sort_pub_dependencies: ignore + unintended_html_in_doc_comment: ignore linter: rules: diff --git a/pkgs/graphs/pubspec.yaml b/pkgs/graphs/pubspec.yaml index 3696467d3..5b5457a75 100644 --- a/pkgs/graphs/pubspec.yaml +++ b/pkgs/graphs/pubspec.yaml @@ -1,5 +1,5 @@ name: graphs -version: 2.3.2 +version: 2.3.3-wip description: Graph algorithms that operate on graphs in any representation. repository: https://github.com/dart-lang/tools/tree/main/pkgs/graphs From 7425102812f023e6ec239e186780d38e006abd74 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Wed, 14 Aug 2024 19:09:36 +0000 Subject: [PATCH 2/2] Add link to issue --- pkgs/graphs/analysis_options.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/graphs/analysis_options.yaml b/pkgs/graphs/analysis_options.yaml index 0e3a99607..19437b410 100644 --- a/pkgs/graphs/analysis_options.yaml +++ b/pkgs/graphs/analysis_options.yaml @@ -6,6 +6,7 @@ analyzer: strict-raw-types: true errors: sort_pub_dependencies: ignore + # https://github.com/dart-lang/sdk/issues/56465 unintended_html_in_doc_comment: ignore linter: