Merge pull request #230345 from microsoft/dev/eslint-9

Eslint 9 migration
This commit is contained in:
Matt Bierner
2024-10-07 09:15:12 -07:00
committed by GitHub
77 changed files with 2207 additions and 1974 deletions

View File

@@ -9,7 +9,6 @@ export function equals(one: any, other: any): boolean {
if (one === other) {
return true;
}
// eslint-disable-next-line @typescript-eslint/prefer-optional-chain
if (one === null || one === undefined || other === null || other === undefined) {
return false;
}