The current Renovate configuration is using the wrong match manager, as our project utilizes `pyproject.toml` instead of `setup.cfg`. This commit corrects the configuration to ensure compatibility with our project structure.
27 lines
471 B
JSON
27 lines
471 B
JSON
{
|
|
"extends": [
|
|
"github>numerique-gouv/renovate-configuration"
|
|
],
|
|
"packageRules": [
|
|
{
|
|
"enabled": false,
|
|
"groupName": "ignored python dependencies",
|
|
"matchManagers": [
|
|
"pep621"
|
|
],
|
|
"matchPackageNames": []
|
|
},
|
|
{
|
|
"enabled": false,
|
|
"groupName": "ignored js dependencies",
|
|
"matchManagers": [
|
|
"npm"
|
|
],
|
|
"matchPackageNames": [
|
|
"node",
|
|
"node-fetch"
|
|
]
|
|
}
|
|
]
|
|
}
|