mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-17 14:30:05 -06:00
Require NO_COLOR environment variable to be non-empty to disable colors
This commit is contained in:
@@ -48,7 +48,7 @@ def use_color(setting):
|
||||
if setting not in COLOR_CHOICES:
|
||||
raise InvalidColorSetting(setting)
|
||||
|
||||
if 'NO_COLOR' in os.environ:
|
||||
if 'NO_COLOR' in os.environ and os.environ['NO_COLOR']:
|
||||
return False
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user