You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Explicit files names to ignore when looking for config files."""
It would also be nice to turn both of these into ClassVars
EXCLUDE_REGEX: ClassVar[str] = (
r"(?x)^(bitbucket-pipelines|buildspec|docker-compose|runway)(\..*)?\.(yml|yaml)"
)
"""Regex for file names to exclude when looking for config files."""EXCLUDE_LIST: ClassVar[list[str]] = []
"""Explicit files names to ignore when looking for config files."""
EXCLUDE_LIST can be made irrelevant by improving the regex. It's probably safe to remove or it can be retained till the next major release with a note added to remove it.
Description: [BUG] Expand CFNgin config name exclusion to add docker-compose(..*)?
The text was updated successfully, but these errors were encountered: