From 86f3b61416b88912021a24c072271b4b5ce28cec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sch=C3=B6nfeldt?= Date: Wed, 27 Sep 2023 13:24:57 +0200 Subject: [PATCH] Add pep8speaks config --- .pep8speaks.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .pep8speaks.yml diff --git a/.pep8speaks.yml b/.pep8speaks.yml new file mode 100644 index 0000000..5e4815b --- /dev/null +++ b/.pep8speaks.yml @@ -0,0 +1,11 @@ +# File : .pep8speaks.yml + +scanner: + diff_only: True + linter: pycodestyle # Other option is flake8 + +pycodestyle: # Same as scanner.linter value. + max-line-length: 79 # Default in PEP 8 + ignore: # Errors and warnings to ignore + - W503 # line break before binary operator + - E203