From 150ef7fe224e40f4a738d49eae643c0da528fabd Mon Sep 17 00:00:00 2001 From: Adrian Schulz Date: Wed, 15 May 2024 08:27:19 +0200 Subject: [PATCH] Added flake8-config-file (copied from kitconcept.intranet) --- backend/.flake8 | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 backend/.flake8 diff --git a/backend/.flake8 b/backend/.flake8 new file mode 100644 index 0000000..1165a53 --- /dev/null +++ b/backend/.flake8 @@ -0,0 +1,22 @@ +# Generated from: +# https://github.com/plone/meta/tree/master/config/default +# See the inline comments on how to expand/tweak this configuration file +[flake8] +doctests = 1 +ignore = + # black takes care of line length + E501, + # black takes care of where to break lines + W503, + # black takes care of spaces within slicing (list[:]) + E203, + # black takes care of spaces after commas + E231, + +## +# Add extra configuration options in .meta.toml: +# [flake8] +# extra_lines = """ +# _your own configuration lines_ +# """ +## \ No newline at end of file