Restrict pylint version to 3.x in renovate configuration because pylint-django 2.6.1 requires pylint<4, preventing automatic upgrades to pylint 4.x that would create unresolvable dependency conflicts until pylint-django releases compatible version.
28 lines
736 B
JSON
28 lines
736 B
JSON
{
|
|
"extends": ["github>numerique-gouv/renovate-configuration"],
|
|
"dependencyDashboard": true,
|
|
"labels": ["dependencies", "noChangeLog"],
|
|
"packageRules": [
|
|
{
|
|
"enabled": false,
|
|
"groupName": "ignored python dependencies",
|
|
"matchManagers": ["pep621"],
|
|
"matchPackageNames": ["redis"]
|
|
},
|
|
{
|
|
"groupName": "allowed pylint versions",
|
|
"matchManagers": ["pep621"],
|
|
"matchPackageNames": ["pylint"],
|
|
"allowedVersions": "<4.0.0"
|
|
},
|
|
{
|
|
"enabled": false,
|
|
"groupName": "ignored js dependencies",
|
|
"matchManagers": ["npm"],
|
|
"matchPackageNames": [
|
|
"eslint", "react", "react-dom", "@types/react-dom", "@types/react", "react-i18next"
|
|
]
|
|
}
|
|
]
|
|
}
|