From f31e49fdff381c883d62ee7b0d8e0d09dfcc77f7 Mon Sep 17 00:00:00 2001 From: Shrihan Kumar Padhy <54971391+shrihanDev@users.noreply.github.com> Date: Wed, 21 Oct 2020 20:26:25 +0530 Subject: [PATCH] Add a new config validation key called `prompt` (#2246) --- internal/config/config_type.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/config/config_type.go b/internal/config/config_type.go index badf7ee00..a28521f0e 100644 --- a/internal/config/config_type.go +++ b/internal/config/config_type.go @@ -18,6 +18,7 @@ const ( var configValues = map[string][]string{ "git_protocol": {"ssh", "https"}, + "prompt": {"enabled", "disabled"}, } // This interface describes interacting with some persistent configuration for gh.