Add JavaScript as language (#10895)

This commit is contained in:
jonathanmetzman 2023-08-28 18:51:21 -04:00 committed by GitHub
parent d6712d688b
commit de3466d56b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)