Skip to content

Latest commit

 

History

History
49 lines (40 loc) · 639 Bytes

pkg-shorthand-repository.md

File metadata and controls

49 lines (40 loc) · 639 Bytes

Enforces the use of the shorthand repository URL

Enforces the use of the shorthand repository URL instead of the full URL.

Fail

{
  "name": "foo",
  "repository": "https://github.com/SamVerschueren/foo",
}
{
  "name": "foo",
  "repository": "https://github.com/SamVerschueren/foo.git"
}
{
  "name": "foo",
  "repository": {
    "type": "git",
    "url": "https://github.com/SamVerschueren/foo.git"
  }
}

Pass

{
  "name": "foo",
  "repository": "SamVerschueren/foo",
}
{
  "name": "foo",
  "repository": {
    "type": "git",
    "url": "SamVerschueren/foo"
  }
}