diff options
-rw-r--r-- | .flake8 | 6 | ||||
-rw-r--r-- | .pre-commit-config.yaml | 4 |
2 files changed, 4 insertions, 6 deletions
@@ -13,7 +13,7 @@ ignore= D400,D401,D402,D405,D406,D407,D408,D409,D410,D411,D412,D413,D414 exclude= __pycache__,.cache, - venv,.venv, - tests + venv,.venv +per-file-ignores=tests/*:D1 import-order-style=pycharm -inline-quotes = " +inline-quotes=" diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5d2d40a..d2737fe 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,10 +1,8 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v2.0.0 + rev: v2.2.3 hooks: - id: flake8 - args: [--config=.flake8] - exclude: ^tests/ additional_dependencies: [ flake8-docstrings, flake8-bugbear, |