From f029180d240f512297c5d58912e99c6faeb0e96d Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Tue, 7 Feb 2023 16:09:32 -0500 Subject: [PATCH] Add license checking for more languages (#9630) --- infra/presubmit.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/infra/presubmit.py b/infra/presubmit.py index 753d2fc76..58b5a241c 100755 --- a/infra/presubmit.py +++ b/infra/presubmit.py @@ -262,13 +262,17 @@ _CHECK_LICENSE_EXTENSIONS = [ '.cpp', '.css', '.Dockerfile', + '.go', '.h', '.htm', '.html', + '.java', '.js', '.proto', '.py', + '.rs', '.sh', + '.ts', ] THIRD_PARTY_DIR_NAME = 'third_party'