chore(lint): clear extension lint regressions and add #63416 changelog

This commit is contained in:
Vignesh Natarajan
2026-04-08 17:17:29 -07:00
parent 1f3171ac91
commit 2484064c48
14 changed files with 16 additions and 15 deletions

View File

@@ -138,7 +138,7 @@ function warnDeprecatedUsersEmailEntries(logVerbose: (message: string) => void,
}
const key = deprecated
.map((v) => normalizeLowercaseStringOrEmpty(v))
.toSorted()
.toSorted((a, b) => a.localeCompare(b))
.join(",");
if (warnedDeprecatedUsersEmailAllowFrom.has(key)) {
return;
@@ -161,7 +161,7 @@ function warnMutableGroupKeysConfigured(
}
const warningKey = mutableKeys
.map((key) => normalizeLowercaseStringOrEmpty(key))
.toSorted()
.toSorted((a, b) => a.localeCompare(b))
.join(",");
if (warnedMutableGroupKeys.has(warningKey)) {
return;

View File

@@ -63,7 +63,7 @@ function resolveSecretInputRef(params: {
function collectGoogleChatAccountAssignment(params: {
target: GoogleChatAccountLike;
path: string;
defaults: SecretDefaults | undefined;
defaults?: SecretDefaults;
context: ResolverContext;
active?: boolean;
inactiveReason?: string;
@@ -107,7 +107,7 @@ function collectGoogleChatAccountAssignment(params: {
export function collectRuntimeConfigAssignments(params: {
config: { channels?: Record<string, unknown> };
defaults: SecretDefaults | undefined;
defaults?: SecretDefaults;
context: ResolverContext;
}): void {
const resolved = getChannelSurface(params.config, "googlechat");