From e3bdad36cc3a1a00c1e6772ca1c1898085ab73e0 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 5 Jan 2023 11:38:34 +0100 Subject: Adding upstream version 3.0.0~a1. Signed-off-by: Daniel Baumann --- .flake8 | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .flake8 (limited to '.flake8') diff --git a/.flake8 b/.flake8 new file mode 100644 index 0000000..d571285 --- /dev/null +++ b/.flake8 @@ -0,0 +1,28 @@ +[flake8] +max-line-length = 88 +per-file-ignores = + # F401: Module imported but unused + # TC001: Move import into type checking block + __init__.py:F401, TC001 + # F811: Redefinition of unused name from line n + pendulum/tz/timezone.py:F811 +min_python_version = 3.7.0 +ban-relative-imports = true +# flake8-use-fstring: https://github.com/MichaelKim0407/flake8-use-fstring#--percent-greedy-and---format-greedy +format-greedy = 1 +inline-quotes = double +enable-extensions = TC, TC1 +type-checking-exempt-modules = typing, typing-extensions +eradicate-whitelist-extend = ^-.*; +extend-ignore = + # E501: Line too long + E501, + # E203: Whitespace before ':' + E203, + # SIM106: Handle error-cases first + SIM106, +extend-exclude = + # External to the project's coding standards: + docs/*, + # Machine-generated, too many false-positives + pendulum/locales/*, -- cgit v1.2.3