secure_pubspec_urls
在 pubspec.yaml
中使用安全 URL。
此规则从 Dart 2.16 开始可用。
规则集:core,recommended,flutter
详细信息
#应该在 pubspec.yaml
中使用安全 URL。
使用 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.6.0。页面最后更新于 2024-07-03。 查看源代码 或 报告问题。