This repository was archived by the owner on Jul 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Expand file tree Collapse file tree 3 files changed +10
-8
lines changed Original file line number Diff line number Diff line change 33## 4.2.0-dev.4
44
55* Revert: Changed the supported ` analyzer ` version to ` ^2.1.0 ` .
6+ * Revert: Changed the supported ` analyzer ` version to ` ^2.0.0 ` .
7+ * Revert: Changed the supported ` analyzer_plugin ` version to ` ^0.7.0 ` .
68
79## 4.2.0-dev.3
810
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ plugin.AnalysisErrorFixes codeIssueToAnalysisErrorFixes(
2525 issue.location.length,
2626 issue.location.start.line,
2727 issue.location.start.column,
28- endLine : issue.location.end.line,
29- endColumn : issue.location.end.column,
28+ issue.location.end.line,
29+ issue.location.end.column,
3030 ),
3131 issue.message,
3232 issue.ruleId,
@@ -68,8 +68,8 @@ plugin.AnalysisErrorFixes designIssueToAnalysisErrorFixes(Issue issue) =>
6868 issue.location.length,
6969 issue.location.start.line,
7070 issue.location.start.column,
71- endLine : issue.location.end.line,
72- endColumn : issue.location.end.column,
71+ issue.location.end.line,
72+ issue.location.end.column,
7373 ),
7474 issue.message,
7575 issue.ruleId,
@@ -93,8 +93,8 @@ plugin.AnalysisErrorFixes metricReportToAnalysisErrorFixes(
9393 length,
9494 startLocation.line,
9595 startLocation.column,
96- endLine : startLocation.line,
97- endColumn : startLocation.column,
96+ startLocation.line,
97+ startLocation.column,
9898 ),
9999 message,
100100 metricId,
Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ environment:
99 sdk : " >=2.12.0 <3.0.0"
1010
1111dependencies :
12- analyzer : 2.0 .0
13- analyzer_plugin : ^0.7 .0
12+ analyzer : ^1.7 .0
13+ analyzer_plugin : ^0.6 .0
1414 ansicolor : ^2.0.1
1515 args : ^2.0.0
1616 collection : ^1.15.0
You can’t perform that action at this time.
0 commit comments