From 8c8458e58fca96f4554a2546f2508728f6c3b9d6 Mon Sep 17 00:00:00 2001 From: Torben <59419684+entorb@users.noreply.github.com> Date: Tue, 2 Apr 2024 07:47:57 +0200 Subject: [PATCH] Delete setup.cfg --- setup.cfg | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 setup.cfg diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index b342fa42b..000000000 --- a/setup.cfg +++ /dev/null @@ -1,20 +0,0 @@ -[flake8] -max-line-length = 88 - -# CM001 Redundant comment found -# D103 Missing docstring in public function -# D200 One-line docstring should fit on one line with quotes -# D400 First line should end with a period -# E203 black-formatter-specific -# E501 length of line -# E741 ambiguous variable name 'l' -# SIM113 Use enumerate for 'i' -# SCS109 open() vs os.open() -# SCS108 `assert` statements should not be present in production code -# S101 Use of assert detected. The enclosed code will be removed when compiling to optimised byte code. -extend-ignore = CM001 D200 E203 E501 E741 SCS109 SIM113 RST213 SCS108 S101 D103 - -# inline-ignore via comment "noqa: SIM115" etc. - -# asserts (in tests are ok), also allow print() instead of logger -# per-file-ignores = tests/*: SCS108 S101 T201