From bfd95c9749a450c29a01f2ca6b1d3a03816d282f Mon Sep 17 00:00:00 2001 From: Pieter Roggemans Date: Wed, 4 Sep 2024 10:01:52 +0200 Subject: [PATCH] Remove flake8 and isort config files --- .flake8 | 21 --------------------- .isort.cfg | 3 --- 2 files changed, 24 deletions(-) delete mode 100644 .flake8 delete mode 100644 .isort.cfg diff --git a/.flake8 b/.flake8 deleted file mode 100644 index 9275b86a..00000000 --- a/.flake8 +++ /dev/null @@ -1,21 +0,0 @@ -[flake8] -max_line_length = 88 -ignore = - C408 # Unnecessary dict/list/tuple call - rewrite as a literal - E203 # whitespace before ':' - doesn't work well with black - E225 # missing whitespace around operator - let black worry about that - E262 # inline comment should start with '# ' - E265 # block comment should start with '# ' - E266 # too many leading '#' for block comment - E302 # expected 2 blank lines, found 1 - E402 # module level import not at top of file - E501 # line too long - let black handle that - E711 # comparison to None should be - E712 # comparison to False/True should be - E741 # ambiguous variable name - F405 # may be undefined, or defined from star imports - W291 # trailing - W503 # line break occurred before a binary operator - let black worry about that - W504 # line break occurred after a binary operator - let black worry about that -per-file-ignores = - __init__.py:F401 diff --git a/.isort.cfg b/.isort.cfg deleted file mode 100644 index 33817945..00000000 --- a/.isort.cfg +++ /dev/null @@ -1,3 +0,0 @@ -[settings] -known_first_party=exactextract -profile=black