ros-infrastructure / rosdoc2

Command-line tool for generating documentation for ROS 2 packages.
Apache License 2.0
29 stars 9 forks source link

[Test] Ignore W503 warnings in Flake8 #43

Closed aprotyas closed 2 years ago

aprotyas commented 2 years ago

Flake8 generates warnings for both W503 and W504 - line breaks before and after binary operators respectively. I came across both together when running CI for #28, and it's difficult to satisfy both. Plus, it's documented that W503 is incompatible with PEP 8. Reference: https://bugs.python.org/issue26763

As such, this PR chooses to ignore W503 warnings for this project.

Signed-off-by: Abrar Rahman Protyasha aprotyas@u.rochester.edu