目录

secure_pubspec_urls

pubspec.yaml 中使用安全 URL。

此规则从 Dart 2.16 开始可用。

规则集:corerecommendedflutter

详细信息

#

应该pubspec.yaml 中使用安全 URL。

使用 https 而不是 httpgit:

错误示例

yaml
repository: http://github.com/dart-lang/example
yaml
git:
  url: git://github.com/dart-lang/example/example.git

正确示例

yaml
repository: https://github.com/dart-lang/example

用法

#

要启用 secure_pubspec_urls 规则,请在你的analysis_options.yaml文件中 linter > rules 下添加 secure_pubspec_urls

analysis_options.yaml
yaml
linter:
  rules:
    - secure_pubspec_urls