-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add lockfile-lint tooling and docs
- Loading branch information
1 parent
6d96faa
commit 6de5171
Showing
5 changed files
with
378 additions
and
270 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
'use strict'; | ||
|
||
module.exports = { | ||
|
||
path: 'package-lock.json', | ||
type: 'npm', | ||
// to many packages are still on the previous-gen sha | ||
validateIntegrity: false, | ||
emptyHostname: false, | ||
allowedHosts: [ 'npm', 'github.com' ], | ||
allowedSchemes: [ | ||
'https:', | ||
'git+ssh:', | ||
'git+https:', | ||
], | ||
validatePackageNames: true, | ||
|
||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
'use strict'; | ||
|
||
const sharedConfig = require('./.lockfile-lint.shared.js'); | ||
|
||
module.exports = { | ||
|
||
...sharedConfig, | ||
|
||
}; |
Oops, something went wrong.