File tree 3 files changed +6
-1
lines changed
pkg/analysis_server/lib/src/services 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ vars = {
146
146
"http_parser_rev" : "1c0c17a1a5d9ca62c85f0940d9edbf2a98209bfa" ,
147
147
"intl_rev" : "fca552f2ec5d682b5fa36f02bdd72a5a4e2edcee" ,
148
148
"json_rpc_2_rev" : "0280ac6cb4f3905d81c47ba927123ba2b95f7940" ,
149
- "linter_rev" : "70fb087e39e6882ad331ee1e3f52f3f3a88e2d16 " , # 1.33.0 (+ `unnecessary_parenthesis` fix )
149
+ "linter_rev" : "2a32d3f04394d02b80c53a460363b5ad4c413301 " , # 1.33.0 (+ `invalid_case_patterns` )
150
150
"lints_rev" : "dfded5e265015f21ce154577fe8488dc244e33c2" ,
151
151
"logging_rev" : "abef3717d958158eb8b0ddb2871f4b15a9804cd4" ,
152
152
"markdown_rev" : "f51c24c5c5603ac20b6d88aded78ef3aa23619ac" ,
Original file line number Diff line number Diff line change @@ -1826,6 +1826,10 @@ LintCode.implementation_imports:
1826
1826
status : needsEvaluation
1827
1827
LintCode.implicit_call_tearoffs :
1828
1828
status : hasFix
1829
+ LintCode.invalid_case_patterns :
1830
+ status : needsFix
1831
+ notes : |-
1832
+ https://github.com/dart-lang/sdk/issues/49960
1829
1833
LintCode.invariant_booleans :
1830
1834
status : needsEvaluation
1831
1835
LintCode.iterable_contains_unrelated_type :
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ class LintNames {
68
68
static const String exhaustive_cases = 'exhaustive_cases' ;
69
69
static const String hash_and_equals = 'hash_and_equals' ;
70
70
static const String implicit_call_tearoffs = 'implicit_call_tearoffs' ;
71
+ static const String invalid_case_patterns = 'invalid_case_patterns' ;
71
72
static const String leading_newlines_in_multiline_strings =
72
73
'leading_newlines_in_multiline_strings' ;
73
74
static const String library_annotations = 'library_annotations' ;
You can’t perform that action at this time.
0 commit comments