Skip to content

Commit

Permalink
Suppress flake8 A005 in existing colcon API (#636)
Browse files Browse the repository at this point in the history
Rather than suppress A005 completely, we can ignore it in our existing
API to prevent new A005 violations from appearing.
  • Loading branch information
cottsay authored Apr 9, 2024
1 parent 532e213 commit eb53f12
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,10 @@ colcon_core.task.python.template = *.em

[flake8]
import-order-style = google
per-file-ignores =
colcon_core/distutils/__init__.py:A005
colcon_core/logging.py:A005
colcon_core/subprocess.py:A005

[coverage:run]
source = colcon_core

0 comments on commit eb53f12

Please sign in to comment.