From 5ce98b43fcfaa848fdbdfa4c2baca7e80cd9f284 Mon Sep 17 00:00:00 2001 From: j-t-1 <120829237+j-t-1@users.noreply.github.com> Date: Tue, 8 Oct 2024 15:41:07 +0100 Subject: [PATCH] DEV: Remove .flake8 pypdf moved from flake8 to ruff. This is a continuation of #2572. --- .flake8 | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 .flake8 diff --git a/.flake8 b/.flake8 deleted file mode 100644 index af9b91aed..000000000 --- a/.flake8 +++ /dev/null @@ -1,8 +0,0 @@ -[flake8] -# The flake8 config should work well with black -# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8 -ignore = E203,E501,E741,N802,N814,N817,P101,SIM105,VNE001,VNE002,VNE003,W503,W604 -exclude = build,sample-files,dist,.benchmarks,.git,.github,.mypy_cache,.pytest_cache -per-file-ignores = - tests/*: ASS001,PT011,B011,T001,T201 - make_release.py:T001,T201