| /* | |
| Copyright (c) 2020 Hong Xu <hong@topbug.net> | |
| This file is part of flake8-executable. | |
| flake8-executable is free software: you can redistribute it and/or modify it | |
| under the terms of the GNU Lesser General Public License as published by the | |
| Free Software Foundation, either version 3 of the License, or (at your | |
| option) any later version. | |
| flake8-executable is distributed in the hope that it will be useful, but | |
| WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
| FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License | |
| for more details. | |
| You should have received a copy of the GNU Lesser General Public License | |
| along with flake8-executable. If not, see <https://www.gnu.org/licenses/>. | |
| */ | |
| { | |
| "extends": [ | |
| "config:base" | |
| ], | |
| "pip_requirements": { | |
| "fileMatch": ["requirements.*\.txt$"] | |
| }, | |
| "pre-commit": { | |
| "enabled": true | |
| }, | |
| "labels": [ | |
| "renovate" | |
| ], | |
| "dependencyDashboard": true, | |
| "schedule": [ | |
| "before 1am on Saturday" | |
| ], | |
| "packageRules": [ | |
| { | |
| "matchPackagePatterns": [ | |
| "*" | |
| ], | |
| "matchUpdateTypes": [ | |
| "patch" | |
| ], | |
| "groupName": "all non-major dependencies", | |
| "groupSlug": "all-minor-patch" | |
| } | |
| ] | |
| } | |