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
There are good use-cases (especially during testing) where user might want to disable ANSI coloring in console output.
I looked at the codebase and I was not able to find any option to disable the coloring. I would have expected at least one of the following environment variables to function:
There are good use-cases (especially during testing) where user might want to disable ANSI coloring in console output.
I looked at the codebase and I was not able to find any option to disable the coloring. I would have expected at least one of the following environment variables to function:
ANSIBLE_NOCOLOR
(ansible)ANSIBLE_FORCE_COLOR
(ansible)FORCE_COLOR
(universal)NO_COLOR
(universal)PY_COLORS
(python)There is some function in https://github.com/ansible/ansible-lint/blob/b1dd55d59eca5129e75be8df604a9268c166f911/src/ansiblelint/__main__.py#L498 that can be used to determine if coloring should be used or not, is very similar with one in core.
The text was updated successfully, but these errors were encountered: