'Sort pub dependencies' 是什么意思?
What is meant by 'Sort pub dependencies'?
我正在尝试将项目迁移到空安全模式,在迁移并清除所有错误后,我遇到了名为'Sort pub dependencies.dart(sort_pub_dependencies )'。我搜索了 Google 但找不到任何解决方案。任何帮助将不胜感激:)
sort_pub_dependencies
是来自 Dart linter 的 lint:https://dart-lang.github.io/linter/lints/sort_pub_dependencies.html
lint 在您项目的 analysis_options.yaml
文件中激活。
linter:
rules:
- sort_pub_dependencies
基本上,它告诉您在 pubspec.yaml
中按字母顺序对依赖项的名称进行排序
dependencies:
markdown:
archive: # put archive before markdown
如果您不想强制执行此规则,可以从 analysis_options.yaml
中删除该行。
这不是必要的规则,您可以通过转到 analysis_options.yaml 文件并在规则下添加此行来关闭它:
sort_pub_dependencies: false
我正在尝试将项目迁移到空安全模式,在迁移并清除所有错误后,我遇到了名为'Sort pub dependencies.dart(sort_pub_dependencies )'。我搜索了 Google 但找不到任何解决方案。任何帮助将不胜感激:)
sort_pub_dependencies
是来自 Dart linter 的 lint:https://dart-lang.github.io/linter/lints/sort_pub_dependencies.html
lint 在您项目的 analysis_options.yaml
文件中激活。
linter:
rules:
- sort_pub_dependencies
基本上,它告诉您在 pubspec.yaml
dependencies:
markdown:
archive: # put archive before markdown
如果您不想强制执行此规则,可以从 analysis_options.yaml
中删除该行。
这不是必要的规则,您可以通过转到 analysis_options.yaml 文件并在规则下添加此行来关闭它:
sort_pub_dependencies: false