The flake8 configuration in tox.ini uses the select option:
The problem is that this enables the W503 warning ("line break before binary operator") which is an incompatibility with the Black formatter and therefore disabled by default. The Black website has section on interoperability
The flake8 documentation states:
You usually do not need to specify this option as the default includes all installed plugin codes.
My suggestion would be to remove that line. Or is it needed for some other reason I'm not aware of?
The flake8 configuration in tox.ini uses the
selectoption:sampleproject/tox.ini
Line 45 in 3fb1461
The problem is that this enables the W503 warning ("line break before binary operator") which is an incompatibility with the Black formatter and therefore disabled by default. The Black website has section on interoperability
The flake8 documentation states:
My suggestion would be to remove that line. Or is it needed for some other reason I'm not aware of?