secure_pubspec_urls
在 pubspec.yaml
中使用安全网址。
此规则从 Dart 2.16 开始可用。
详细信息
#请执行 在 pubspec.yaml
中使用安全网址。
使用 https
而不是 http
或 git:
。
错误示例
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
除非另有说明,否则本网站上的文档反映了 Dart 3.5.3。页面上次更新于 2024-07-03。 查看源代码 或 报告问题。