From 0aa9b74a555d9774fb93d88eec8c568f54f8e4b0 Mon Sep 17 00:00:00 2001 From: Spencer Clark Date: Sun, 5 Nov 2023 09:54:06 -0500 Subject: [PATCH] Bump flake8 --- .pre-commit-config.yaml | 2 +- setup.cfg | 17 +++++++++++------ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ea9e473..e88f2bb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -4,6 +4,6 @@ repos: hooks: - id: black - repo: https://github.com/PyCQA/flake8.git - rev: 4.0.1 + rev: 6.1.0 hooks: - id: flake8 diff --git a/setup.cfg b/setup.cfg index 151badb..51ba293 100644 --- a/setup.cfg +++ b/setup.cfg @@ -43,12 +43,17 @@ setup_requires = setuptools_scm [flake8] -ignore = - E203 # whitespace before ':' - doesn't work well with black - E402 # module level import not at top of file - E501 # line too long - let black worry about that - E731 # do not assign a lambda expression, use a def - W503 # line break before binary operator +ignore = + # whitespace before ':' - doesn't work well with black + E203 + # module level import not at top of file + E402 + # line too long - let black worry about that + E501 + # do not assign a lambda expression, use a def + E731 + # line break before binary operator + W503 exclude = .eggs doc