Check that the repository/directory is the same as where the package.json lives.
This rule aims to ensure the repository/directory of a package.
Examples of incorrect code for this rule:
{
"repository": {
"directory": "wrong-package/bad-copy-paste"
}
}
Examples of correct code for this rule:
{
"repository": {
"directory": "correct-path"
}
}
{
"repository": "no-directory"
}
Using the directory is optional. If you aren't using it, you may not want this rule.