Remove .flake8

I re-ran flake8 today and was puzzled to see W503 warnings.
Eventually I found out that the setup.cfg config overrides .flake8.
This patch merges the two and removes .flake8, to avoid future
confusion.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
This commit is contained in:
Tom Tromey
2024-03-19 10:21:01 -06:00
parent 374c1cbbf0
commit 8a99b2b817
2 changed files with 2 additions and 3 deletions

View File

@@ -1,2 +0,0 @@
[flake8]
ignore = E501, W503

View File

@@ -5,4 +5,5 @@
# E203: Whitespace before ':'
# E501: line too long
# E701: Multiple statements on one line (colon)
ignore = E203,E501,E701
# W503: line break before binary operator
ignore = E203,E501,E701,W503