From 8d4c0409e4822e182fee537df40f6adb79661acb Mon Sep 17 00:00:00 2001 From: Julian Graham Date: Thu, 29 Feb 2024 11:54:19 -0500 Subject: [PATCH] chore: Re-add linting config --- .flake8 | 5 +++++ .isort.cfg | 8 ++++++++ 2 files changed, 13 insertions(+) create mode 100644 .flake8 create mode 100644 .isort.cfg diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..879203f --- /dev/null +++ b/.flake8 @@ -0,0 +1,5 @@ +[flake8] +ignore = E117, W191, W504 +exclude = .venv/, src/djpaypal/migrations/ +inline-quotes = double +max-line-length = 92 diff --git a/.isort.cfg b/.isort.cfg new file mode 100644 index 0000000..9430338 --- /dev/null +++ b/.isort.cfg @@ -0,0 +1,8 @@ +[isort] +indent = tab +line_length = 92 +lines_after_imports = 2 +balanced_wrapping = True +default_section = THIRDPARTY +known_first_party = djpaypal +multi_line_output = 5