DhanushNehru / DhanushNehru/lockcheck
Allow configuration via .lockcheckrc.json
Open
enhancement
good first issue
- Dominant language
- JavaScript
- Stars
- 11
- Forks
- 3
- Avg merge
- 43m
- Merged PRs (30d)
- 1
Description
Right now, `lockcheck` runs all analyzers automatically. Some teams might have internal packages that look like typosquats, or custom private registries that trip the `registry` anomaly detector.
We should support an optional `.lockcheckrc.json` file in the root directory that allows users to ignore certain packages, scopes, or disable specific analyzers.
**Example config:**
```json
{
"ignorePackages": ["my-internal-tool"],
"ignoreScopes": ["@mycorp"],
"disableAnalyzers": ["freshness"]
}
```
Contributor guide
Assessment
This issue has not been assessed yet.