Bump linter

Change-Id: If108d01736a6fb7a07e4c894752934ea9fc952bf
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/295802
Reviewed-by: Phil Quitslund <pquitslund@google.com>
Commit-Queue: Samuel Rawlins <srawlins@google.com>
This commit is contained in:
Sam Rawlins 2023-04-18 19:25:48 +00:00 committed by Commit Queue
parent 30518b205d
commit 008ef8c1a9
2 changed files with 13 additions and 2 deletions

2
DEPS
View file

@ -145,7 +145,7 @@ vars = {
"http_parser_rev": "bbe37dd228ec59f58a73df4b328ef747757165c7",
"intl_rev": "a958db01c90d041f0cd357d1732ae9813b620ee0",
"json_rpc_2_rev": "5da270592006e4d43fd5a6ac736829f955881240",
"linter_rev": "eb0ca501f48deaa034e07e6dd1ff9ad6ff3519c6", # disable rev_sdk_deps.dart
"linter_rev": "ca2a9fe07b399138b1f9d44e9e11e5198e0d8c05", # disable rev_sdk_deps.dart
"lints_rev": "f09399a2574eb4e3f485881cf977fca72628f443",
"logging_rev": "787030a2b3d0d5d53ce57f1c7dc74f27ecb07b0b",
"markdown_rev": "d437c85188806fe2bfa4f3616159300ba9dc6d2a",

View file

@ -45,7 +45,7 @@
#
# Stats:
# - 0 "needsEvaluation"
# - 379 "needsFix"
# - 381 "needsFix"
# - 352 "hasFix"
# - 490 "noFix"
@ -2111,6 +2111,14 @@ LintCode.list_remove_unrelated_type:
status: noFix
LintCode.literal_only_boolean_expressions:
status: noFix
LintCode.matching_super_parameters:
status: needsFix
notes: |-
A little tricky, but two (non-conflicting) ideas:
1. Rename the super-parameter if it doesn't conflict with any other
parameter name.
2. Transpose two super parameters if doing so would match up their
super-constructor parameters.
LintCode.missing_whitespace_between_adjacent_strings:
status: needsFix
notes: |-
@ -2131,6 +2139,9 @@ LintCode.no_leading_underscores_for_library_prefixes:
status: hasFix
LintCode.no_leading_underscores_for_local_identifiers:
status: hasFix
LintCode.no_literal_bool_comparisons:
status: needsFix
notes: The fix is to remove `== true` etc.
LintCode.no_logic_in_create_state:
status: noFix
LintCode.no_runtimeType_toString: