From 5d1e1e8acff85438368b0b64ec5addcf1ee7c9b7 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Sat, 8 Apr 2023 12:07:29 +0200 Subject: [PATCH] flake8: add relaxed config --- .flake8 | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .flake8 diff --git a/.flake8 b/.flake8 new file mode 100644 index 00000000..6a944f76 --- /dev/null +++ b/.flake8 @@ -0,0 +1,12 @@ +# flake8 is used for linting Python code setup to automatically run with +# pre-commit. +# +# ref: https://flake8.pycqa.org/en/latest/user/configuration.html +# + +[flake8] +# E: style errors +# W: style warnings +# C: complexity +# D: docstring warnings (unused pydocstyle extension) +ignore = E, C, W, D