Merge pull request #33359 from awanlin/topic/typos-cli

Added `typos` to CI and fixed all findings
This commit is contained in:
Andre Wanlin
2026-05-25 15:23:38 -05:00
committed by GitHub
29 changed files with 186 additions and 55 deletions
@@ -5,7 +5,7 @@
```ts
import { AwsCredentialsManager } from '@backstage/integration-aws-node';
import { AwsS3Integration } from '@backstage/integration';
import { AzureBlobStorageIntergation } from '@backstage/integration';
import { AzureBlobStorageIntegration } from '@backstage/integration';
import { AzureCredentialsManager } from '@backstage/integration';
import { AzureDevOpsCredentialsProvider } from '@backstage/integration';
import { AzureIntegration } from '@backstage/integration';
@@ -67,7 +67,7 @@ export class AwsS3UrlReader implements UrlReaderService {
export class AzureBlobStorageUrlReader implements UrlReaderService {
constructor(
credsManager: AzureCredentialsManager,
integration: AzureBlobStorageIntergation,
integration: AzureBlobStorageIntegration,
deps: {
treeResponseFactory: ReadTreeResponseFactory;
},
@@ -26,7 +26,7 @@ import { Readable } from 'node:stream';
import { relative } from 'node:path/posix';
import { ReadUrlResponseFactory } from './ReadUrlResponseFactory';
import {
AzureBlobStorageIntergation,
AzureBlobStorageIntegration,
AzureCredentialsManager,
DefaultAzureCredentialsManager,
ScmIntegrations,
@@ -88,14 +88,14 @@ export class AzureBlobStorageUrlReader implements UrlReaderService {
// private readonly blobServiceClient: BlobServiceClient;
private readonly credsManager: AzureCredentialsManager;
private readonly integration: AzureBlobStorageIntergation;
private readonly integration: AzureBlobStorageIntegration;
private readonly deps: {
treeResponseFactory: ReadTreeResponseFactory;
};
constructor(
credsManager: AzureCredentialsManager,
integration: AzureBlobStorageIntergation,
integration: AzureBlobStorageIntegration,
deps: {
treeResponseFactory: ReadTreeResponseFactory;
},