]> git.phdru.name Git - bookmarks_db.git/commitdiff
Style: Completely ignore some flake8 warnings
authorOleg Broytman <phd@phdru.name>
Wed, 6 Sep 2023 20:45:27 +0000 (23:45 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 12 Nov 2023 10:24:32 +0000 (13:24 +0300)
E701 multiple statements on one line (colon)
E722 do not use bare 'except'

.flake8 [new file with mode: 0644]

diff --git a/.flake8 b/.flake8
new file mode 100644 (file)
index 0000000..4bd67c9
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,4 @@
+[flake8]
+# E701 multiple statements on one line (colon)
+# E722 do not use bare 'except'
+extend-ignore = E701,E722