Closed sourcegraph-wk closed 2 years ago
No security relevant content was detected by automated scans.
aviary.yaml
coverage of security relevant codeQuestions or Comments? Reach out on Slack: #support-infosec.
QA +1 CI passes @Workiva/release-management-p
This Sourcegraph batch replaces deprecated commands from the Dart SDK with the new ones. All new CLI commands now live under the main
dart
executable. See this issue for the details https://github.com/dart-lang/sdk/issues/46100This PR might need to be checked or tweaked for possible errors in the arguments to
dart analyze
anddart format
since they take slightly different arguments than the original. In most cases for analyze all the arguments can be removed and it can just bedart analyze
.Some of the argument changes were difficult to match and replace in an automated way. Since there are only a few places that might break, it'll be easier to let the batch create the PR and then manually adjust them.
Argument changes for dartfmt -> dart format
-w
should be removed automatically since overwriting files is now the default. But, if you spot one, remove it.--dry-run
is not a supported argument now. Replace with--set-exit-if-changed -o none
repos that look like they will need updates for dart format
Argument changes for dartanalyzer -> dart analyze
--no-hints
and--no-lints
are removedrepos that look like they will need updates for dart analyze
QA steps:
dart analyze
ordart format
check the arguments_Created by Sourcegraph batch change
Workiva/dart_commands
._