Skip to content

Files

Latest commit

 

History

History
24 lines (15 loc) · 467 Bytes

secure_pubspec_urls.md

File metadata and controls

24 lines (15 loc) · 467 Bytes

Pattern: Missing use of secure URL in pubspec.yaml

Issue: -

Description

DO Use secure urls in pubspec.yaml.

Use https instead of http or git:.

Example of correct code:

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

Example of incorrect code:

repository: http://github.com/dart-lang/example

Further Reading