From b0dece257cd2697bbd3d7f939886325d4ae65387 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Mon, 26 Apr 2021 15:16:57 -0700 Subject: [PATCH] build: update tslint to check for proper and correct file header Update the file header expectation in linting to be Google LLC rather than Google Inc. --- tslint.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tslint.json b/tslint.json index 9128c2c04b24..ee2968d79de4 100644 --- a/tslint.json +++ b/tslint.json @@ -134,7 +134,10 @@ "curly": true, "file-header": [ true, - "Copyright Google Inc\\. All Rights Reserved\\." + { + "match": "Copyright Google LLC", + "allow-single-line-comments": false + } ], "variable-name": [ true,