Abandonment Presets
abandonments:recommended¶
Recommended configuration for abandoned packages, treating packages without a release for 1 year as abandoned, while taking into account community-sourced overrides.
{
"packageRules": [
{
"abandonmentThreshold": "1 year",
"matchPackageNames": [
"*"
]
},
{
"abandonmentThreshold": null,
"matchDatasources": [
"npm"
],
"matchPackageNames": [
"@types/*"
]
},
{
"abandonmentThreshold": "6 years",
"matchDatasources": [
"npm"
],
"matchPackageNames": [
"lodash"
]
}
]
}