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:
parent
ecce99470a
commit
5aeb9a4124
10
tslint.json
10
tslint.json
|
@ -8,7 +8,10 @@
|
||||||
"rules": {
|
"rules": {
|
||||||
"file-header": [
|
"file-header": [
|
||||||
true,
|
true,
|
||||||
"Copyright Google Inc\\."
|
{
|
||||||
|
"match": "Copyright Google LLC",
|
||||||
|
"allow-single-line-comments": false
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"no-console": [
|
"no-console": [
|
||||||
true,
|
true,
|
||||||
|
@ -51,7 +54,10 @@
|
||||||
"jsRules": {
|
"jsRules": {
|
||||||
"file-header": [
|
"file-header": [
|
||||||
true,
|
true,
|
||||||
"Copyright Google Inc\\."
|
{
|
||||||
|
"match": "Copyright Google LLC",
|
||||||
|
"allow-single-line-comments": false
|
||||||
|
}
|
||||||
],
|
],
|
||||||
"no-console": [
|
"no-console": [
|
||||||
true,
|
true,
|
||||||
|
|
Loading…
Reference in New Issue