From bd176a7bf4e71faa1da3b58ad02c4f745e0befcb Mon Sep 17 00:00:00 2001 From: kiblik <5609770+kiblik@users.noreply.github.com> Date: Mon, 8 Jul 2024 23:45:49 +0200 Subject: [PATCH] fix(flake8): remove leftover --- .flake8 | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .flake8 diff --git a/.flake8 b/.flake8 deleted file mode 100644 index df8b8c2c9c..0000000000 --- a/.flake8 +++ /dev/null @@ -1,25 +0,0 @@ -[flake8] -# Documentation for flake8 http://flake8.pycqa.org/en/3.1.1/user/index.html - -# we should not ignore these mistakes !!!!!!!! - -ignore = - # Suppress - line too long (> 79 characters) - E501 - # Suppress - Continuation line missing indentation or outdented - E127 - # Suppress - Function is too complex - C901 - # Bare except - E722 - E126 - E128 - # Line break occurred before a binary operator (conflicting with black) - W503 - # undefined file name excpetion - F821 - -# We should not touch migrations that are already used, but check new migrations -per-file-ignores = - dojo/db_migrations/00*:F841 - dojo/db_migrations/01*:F841