Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@ repos:
- id: commitlint
additional_dependencies: ['@commitlint/config-conventional']
stages: [commit-msg]
- repo: https://github.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
rev: 5.8.0
hooks:
- id: isort
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.812
hooks:
- id: mypy
3 changes: 3 additions & 0 deletions .renovaterc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"extends": [
"config:base"
],
"pip_requirements": {
"fileMatch": ["^requirements(-[\\w]*)?\\.txt$"]
},
"regexManagers": [
{
"fileMatch": ["^tests/functional/fixtures/.env$"],
Expand Down
8 changes: 4 additions & 4 deletions requirements-lint.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
black
flake8
isort
mypy
black==20.8b1
flake8==3.9.2
isort==5.8.0
mypy==0.812