diff options
-rw-r--r-- | .commitlintrc.json | 5 | ||||
-rw-r--r-- | .renovaterc.json | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/.commitlintrc.json b/.commitlintrc.json index c30e5a9..0073e93 100644 --- a/.commitlintrc.json +++ b/.commitlintrc.json @@ -1,3 +1,6 @@ { - "extends": ["@commitlint/config-conventional"] + "extends": ["@commitlint/config-conventional"], + "rules": { + "footer-max-line-length": [2, "always", 200] + } } diff --git a/.renovaterc.json b/.renovaterc.json index df0650f..b4b0626 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -28,6 +28,12 @@ { "matchPackagePrefixes": ["types-"], "groupName": "typing dependencies" - } + }, + { + "matchPackagePatterns": ["(^|/)black$"], + "versioning": "pep440", + "ignoreUnstable": false, + "groupName": "black" + } ] } |