From 55ee0836f8dccb7b9f3010a0b6f344cf30b5a285 Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 16 May 2022 00:20:07 +0200 Subject: [PATCH] add flake8 to the hooks --- .pre-commit-config.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0e8a58ece0..fa65238f9a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,3 +9,8 @@ repos: - id: check-yaml - id: check-added-large-files - id: mixed-line-ending +- repo: https://github.com/pycqa/flake8 + rev: '4.0.1' + hooks: + - id: flake8 + additional_dependencies: [flake8-docstrings]