build: Update file-header lint rule to Google LLC (#37205)

Update the file-header lint rule to properly reference Google LLC
rather than Google Inc, for the required headers.

PR Close #37205
This commit is contained in:
Joey Perrott 2020-05-19 12:07:26 -07:00 committed by Matias Niemelä
parent ecce99470a
commit 5aeb9a4124
1 changed files with 8 additions and 2 deletions

View File

@ -8,7 +8,10 @@
"rules": {
"file-header": [
true,
"Copyright Google Inc\\."
{
"match": "Copyright Google LLC",
"allow-single-line-comments": false
}
],
"no-console": [
true,
@ -51,7 +54,10 @@
"jsRules": {
"file-header": [
true,
"Copyright Google Inc\\."
{
"match": "Copyright Google LLC",
"allow-single-line-comments": false
}
],
"no-console": [
true,