From de3466d56b171c4e98cf786ff50862cdae679f92 Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Mon, 28 Aug 2023 18:51:21 -0400 Subject: [PATCH] Add JavaScript as language (#10895) --- infra/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/helper.py b/infra/helper.py index 89ca202e5..5f4874fcb 100755 --- a/infra/helper.py +++ b/infra/helper.py @@ -259,7 +259,7 @@ def get_parser(): # pylint: disable=too-many-statements,too-many-locals generate_parser.add_argument( '--language', default=constants.DEFAULT_LANGUAGE, - choices=['c', 'c++', 'rust', 'go', 'jvm', 'swift', 'python'], + choices=['c', 'c++', 'rust', 'go', 'jvm', 'swift', 'python', 'javascript'], help='Project language.') _add_external_project_args(generate_parser)