I'm running a linting tool as a pre-commit hook, the colored output from the tool is useful.
pre-commit seems to strip the colors from the tool output though
I tried pre-commit run <tool> --color=always but it had no effect, it seems this flag only toggles the color from pre-commit's own output strings ("Failed" etc).
Is there a way to preserve color in the output from the tool being run by pre-commit?