Skip to content

Commit dc4bbec

Browse files
authored
chore: update eslint rule to allow max 1 empty line (#25600)
There should be no reason to have back-to-back new lines which our current eslint rules allow. I made the rule stricter and fixed instances where we were breaking the stricter rule. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent a799531 commit dc4bbec

File tree

465 files changed

+2
-1121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

465 files changed

+2
-1121
lines changed

packages/@aws-cdk-testing/cli-integ/lib/aws.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,6 @@ type AwsCallIO<T> =
185185
type First<T> = T extends [any, any] ? T[0] : never;
186186
type Second<T> = T extends [any, any] ? T[1] : never;
187187

188-
189188
export function isStackMissingError(e: Error) {
190189
return e.message.indexOf('does not exist') > -1;
191190
}

packages/@aws-cdk-testing/cli-integ/lib/files.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ export function findUp(name: string, directory: string = process.cwd()): string
4545
return findUp(name, path.dirname(absoluteDirectory));
4646
}
4747

48-
4948
/**
5049
* Docker-safe home directory
5150
*/

packages/@aws-cdk-testing/cli-integ/lib/staging/parallel-shell.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import PQueue from 'p-queue';
22
import { sleep } from '../aws';
33
import { MemoryStream } from '../corking';
44

5-
65
export type ErrorResponse = 'fail' | 'skip' | 'retry';
76

87
/**

packages/@aws-cdk-testing/cli-integ/lib/with-sam.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { AwsContext, withAws } from './with-aws';
1010
import { cloneDirectory, installNpmPackages, TestFixture, DEFAULT_TEST_TIMEOUT_S } from './with-cdk-app';
1111
import { withTimeout } from './with-timeout';
1212

13-
1413
export interface ActionOutput {
1514
actionSucceeded?: boolean;
1615
actionOutput?: any;

packages/@aws-cdk-testing/cli-integ/test/xpmutex.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ test('acquire waits', async () => {
3030
await secondProcess;
3131
});
3232

33-
3433
/**
3534
* Poll for some condition every 10ms
3635
*/

packages/@aws-cdk-testing/cli-integ/tests/init-csharp/init-csharp.integtest.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ import { integTest, withTemporaryDirectory, ShellHelper, withPackages } from '..
1313
})));
1414
});
1515

16-

packages/@aws-cdk-testing/framework-integ/test/aws-apigateway/test/authorizers/integ.token-authorizer.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ const restapi = new RestApi(stack, 'MyRestApi', {
2727
},
2828
});
2929

30-
3130
restapi.root.addMethod('ANY', new MockIntegration({
3231
integrationResponses: [
3332
{ statusCode: '200' },

packages/@aws-cdk-testing/framework-integ/test/aws-apigateway/test/integ.domain-name.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ const api2 = new Api(testCase, 'IntegApi2', {
9292
path: 'items',
9393
});
9494

95-
9695
/**
9796
* Test 1
9897
*
@@ -151,7 +150,6 @@ secondDomain.addApiMapping(api2.restApi.deploymentStage, {
151150
basePath: 'orders/v2',
152151
});
153152

154-
155153
/**
156154
* Test 3
157155
*
@@ -177,7 +175,6 @@ thirdDomain.addBasePathMapping(api2.restApi, {
177175
basePath: 'v2',
178176
});
179177

180-
181178
/**
182179
* -------------------------------------------------------
183180
* ------------------------- THEN ------------------------

packages/@aws-cdk-testing/framework-integ/test/aws-apigateway/test/integ.method-grant-execute.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import * as cdk from 'aws-cdk-lib';
33
import * as integ from '@aws-cdk/integ-tests-alpha';
44
import * as apigw from 'aws-cdk-lib/aws-apigateway';
55

6-
76
const app = new cdk.App();
87
const stack = new cdk.Stack(app, 'GrantExecute');
98

packages/@aws-cdk-testing/framework-integ/test/aws-appsync/test/integ.graphql-iam.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ testDS.createResolver('MutationAddTest', {
8989

9090
const lambdaIAM = new Role(stack, 'LambdaIAM', { assumedBy: new ServicePrincipal('lambda') });
9191

92-
9392
api.grant(lambdaIAM, IamResource.custom('types/Query/fields/getTests'), 'appsync:graphql');
9493
api.grant(lambdaIAM, IamResource.ofType('test'), 'appsync:GraphQL');
9594
api.grantMutation(lambdaIAM, 'addTest');

packages/@aws-cdk-testing/framework-integ/test/aws-appsync/test/integ.log-retention.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { GraphqlApi, LogConfig, SchemaFile } from 'aws-cdk-lib/aws-appsync';
77
const app = new App();
88
const stack = new Stack(app, 'AppSyncIntegLogRetention');
99

10-
1110
const retentionTime = RetentionDays.ONE_WEEK;
1211
const logConfig: LogConfig = {
1312
retention: retentionTime,

packages/@aws-cdk-testing/framework-integ/test/aws-autoscaling-hooktargets/test/integ.queue-hook.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ const setDesired = integ.assertions.awsApiCall('AutoScaling', 'setDesiredCapacit
5353
DesiredCapacity: 1,
5454
});
5555

56-
5756
const message = integ.assertions.awsApiCall('SQS', 'receiveMessage', {
5857
QueueUrl: testCase.queueUrl,
5958
});

packages/@aws-cdk-testing/framework-integ/test/aws-cloudformation/test/integ.core-cross-region-references.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ const integ = new IntegTest(app, 'cross-region-references', {
7777
stackUpdateWorkflow: false,
7878
});
7979

80-
8180
/**
8281
* Test that if the references are still in use, deleting the producer
8382
* stack will fail

packages/@aws-cdk-testing/framework-integ/test/aws-cloudfront/test/integ.cloudfront-cross-region-cert.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ const cloudFrontStack = new cdk.Stack(app, 'integ-cloudfront-stack', {
3232
crossRegionReferences: true,
3333
});
3434

35-
3635
const hostedZone = route53.PublicHostedZone.fromHostedZoneAttributes(acmStack, 'HostedZone', {
3736
hostedZoneId,
3837
zoneName: hostedZoneName,

packages/@aws-cdk-testing/framework-integ/test/aws-cloudfront/test/integ.distribution-logbucket.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { TestOrigin } from './test-origin';
33
import * as cloudfront from 'aws-cdk-lib/aws-cloudfront';
44
import * as integ from '@aws-cdk/integ-tests-alpha';
55

6-
76
const app = new cdk.App();
87
const stack = new cdk.Stack(app, 'integ-distribution-logbucket');
98

packages/@aws-cdk-testing/framework-integ/test/aws-cloudtrail/test/integ.cloudtrail-insight.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ new cloudtrail.Trail(stack, 'Trail', {
3838
],
3939
});
4040

41-
4241
new integ.IntegTest(app, 'aws-cdk-cloudtrail-inshights', {
4342
testCases: [stack],
4443
});

packages/@aws-cdk-testing/framework-integ/test/aws-cloudwatch-actions/test/integ.ssm-incident-alarm-action.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ class SsmIncidentAlarmActionIntegrationTestStack extends Stack {
3737

3838
responsePlan.node.addDependency(replicationSet);
3939

40-
4140
const metric = new cloudwatch.Metric({
4241
namespace: 'CDK/Test',
4342
metricName: 'Metric',

packages/@aws-cdk-testing/framework-integ/test/aws-codebuild/test/integ.asset-build-spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ getBuildProject.assertAtPath(
2828
ExpectedResult.stringLikeRegexp('.+'),
2929
);
3030

31-
3231
const getBuildProjectBuildSpecArn = getBuildProject.getAttString('projects.0.source.buildspec');
3332

3433
// Assert that the buildspec for the project is in fact an S3 object arn

packages/@aws-cdk-testing/framework-integ/test/aws-codedeploy/test/lambda/integ.deployment-group.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import * as lambda from 'aws-cdk-lib/aws-lambda';
44
import * as cdk from 'aws-cdk-lib';
55
import * as codedeploy from 'aws-cdk-lib/aws-codedeploy';
66

7-
87
const app = new cdk.App();
98
const stack = new cdk.Stack(app, 'aws-cdk-codedeploy-lambda');
109

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.pipeline-s3-deploy.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ getObjectCall.provider.addToRolePolicy({
9292
Resource: ['*'],
9393
});
9494

95-
9695
const putObjectCall = integ.assertions.awsApiCall('S3', 'putObject', {
9796
Bucket: bucket.bucketName,
9897
Key: 'key',

packages/@aws-cdk-testing/framework-integ/test/aws-codepipeline-actions/test/integ.pipeline-with-replication.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { App, Stack, RemovalPolicy } from 'aws-cdk-lib';
66
import { IntegTest } from '@aws-cdk/integ-tests-alpha';
77
import { S3SourceAction, CodeBuildAction } from 'aws-cdk-lib/aws-codepipeline-actions';
88

9-
109
const app = new App({
1110
treeMetadata: false,
1211
});
@@ -23,7 +22,6 @@ const stack2 = new Stack(app, 'integ-pipeline-consumer-stack', {
2322
crossRegionReferences: true,
2423
});
2524

26-
2725
const key = new Key(stack1, 'ReplicationKey');
2826
const bucket = new Bucket(stack1, 'ReplicationBucket', {
2927
encryptionKey: key,

packages/@aws-cdk-testing/framework-integ/test/aws-cognito/test/integ.user-pool-idp.google.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { Secret } from 'aws-cdk-lib/aws-secretsmanager';
22
import { App, CfnOutput, RemovalPolicy, Stack } from 'aws-cdk-lib';
33
import { ProviderAttribute, UserPool, UserPoolIdentityProviderGoogle } from 'aws-cdk-lib/aws-cognito';
44

5-
65
/*
76
* Stack verification steps
87
* * Visit the URL provided by stack output 'SignInLink' in a browser, and verify the 'Google' sign in link shows up.

packages/@aws-cdk-testing/framework-integ/test/aws-config/test/integ.rule.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ driftRule.onComplianceChange('ComplianceChange', {
3232
target: new targets.SnsTopic(complianceTopic),
3333
});
3434

35-
3635
new integ.IntegTest(app, 'aws-cdk-config-rule-integ', {
3736
testCases: [stack],
3837
});

packages/@aws-cdk-testing/framework-integ/test/aws-dynamodb/test/integ.global-replicas-provisioned.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,4 @@ new IntegTest(app, 'aws-cdk-dynamodb-global-replicas-provisioned-test', {
2121
testCases: [stack],
2222
});
2323

24-
2524
app.synth();

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/import-certificates-handler/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export async function handler(event: AWSLambda.CloudFormationCustomResourceEvent
2424
}).promise();
2525
}
2626

27-
2827
return {
2928
Data: {
3029
ServerCertificateArn: serverImport?.CertificateArn,

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/integ.client-vpn-endpoint.js.snapshot/asset.1ef463e71119677d383a964bbb0740f0c4de382c21d5a8d68be98334d514ae8a/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export async function handler(event: AWSLambda.CloudFormationCustomResourceEvent
2424
}).promise();
2525
}
2626

27-
2827
return {
2928
Data: {
3029
ServerCertificateArn: serverImport?.CertificateArn,

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/integ.launch-template.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import * as cdk from 'aws-cdk-lib';
22
import * as integ from '@aws-cdk/integ-tests-alpha';
33
import * as ec2 from 'aws-cdk-lib/aws-ec2';
44

5-
65
const app = new cdk.App();
76

87
const stack = new cdk.Stack(app, 'aws-cdk-ec2-lt-metadata-1');

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/integ.machine-image.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
import { Construct } from 'constructs';
99
import { EC2_RESTRICT_DEFAULT_SECURITY_GROUP } from 'aws-cdk-lib/cx-api';
1010

11-
1211
export class TestCase extends Stack {
1312
constructor(scope: Construct, id: string, props?: StackProps) {
1413
super(scope, id, props);
@@ -32,7 +31,6 @@ export class TestCase extends Stack {
3231
}
3332
}
3433

35-
3634
const app = new App();
3735
new IntegTest(app, 'integ-test', {
3836
testCases: [new TestCase(app, 'integ-ec2-machine-image-test')],

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/integ.prefix-list.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
} from 'aws-cdk-lib';
88
import { Construct } from 'constructs';
99

10-
1110
export class TestCase extends Stack {
1211
constructor(scope: Construct, id: string, props?: StackProps) {
1312
super(scope, id, props);
@@ -20,7 +19,6 @@ export class TestCase extends Stack {
2019
}
2120
}
2221

23-
2422
const app = new App();
2523
new IntegTest(app, 'integ-test', {
2624
testCases: [new TestCase(app, 'integ-ec2-prefix-list-test')],

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/integ.vpc-flow-logs-customformat.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { EC2_RESTRICT_DEFAULT_SECURITY_GROUP } from 'aws-cdk-lib/cx-api';
66

77
const app = new App();
88

9-
109
class TestStack extends Stack {
1110
constructor(scope: App, id: string, props?: StackProps) {
1211
super(scope, id, props);
@@ -70,7 +69,6 @@ class TestStack extends Stack {
7069
}
7170
}
7271

73-
7472
new IntegTest(app, 'FlowLogs', {
7573
testCases: [
7674
new TestStack(app, 'FlowLogsTestStack'),

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/integ.vpc-flow-logs-interval.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { EC2_RESTRICT_DEFAULT_SECURITY_GROUP } from 'aws-cdk-lib/cx-api';
77

88
const app = new App();
99

10-
1110
class TestStack extends Stack {
1211
constructor(scope: App, id: string, props?: StackProps) {
1312
super(scope, id, props);
@@ -71,7 +70,6 @@ class TestStack extends Stack {
7170
}
7271
}
7372

74-
7573
new IntegTest(app, 'FlowLogs', {
7674
testCases: [
7775
new TestStack(app, 'FlowLogsTestStack'),

packages/@aws-cdk-testing/framework-integ/test/aws-ec2/test/integ.vpc-ipam.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,3 @@ integ.assertions.awsApiCall('EC2', 'describeVpcs', {
8282

8383
app.synth();
8484

85-

packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.healthchecks-multiple-network-load-balanced-fargate-service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ networkMultipleTargetGroupsFargateService.targetGroups[0].configureHealthCheck({
5050

5151
networkMultipleTargetGroupsFargateService.targetGroups[1].configureHealthCheck({});
5252

53-
5453
new IntegTest(app, 'Integ', { testCases: [stack] });
5554

5655
app.synth();

packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.queue-processing-fargate-service-isolated.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ const vpc = new ec2.Vpc(stack, 'VPC', {
2424
],
2525
});
2626

27-
2827
vpc.addS3Endpoint('S3Endpoint', [{ subnetType: ec2.SubnetType.PRIVATE_ISOLATED }]);
2928

3029
const securityGroup = new ec2.SecurityGroup(stack, 'MyCustomSG', {

packages/@aws-cdk-testing/framework-integ/test/aws-ecs-patterns/test/fargate/integ.runtime-platform-application-load-balanced-fargate-service.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { ScheduledFargateTask } from 'aws-cdk-lib/aws-ecs-patterns';
1010
const app = new cdk.App();
1111
const stack = new cdk.Stack(app, 'aws-ecs-runtime-integ');
1212

13-
1413
const vpc = new ec2.Vpc(stack, 'Vpc', { maxAzs: 1, restrictDefaultSecurityGroup: false });
1514
const cluster = new ecs.Cluster(stack, 'FargateCluster', { vpc });
1615

packages/@aws-cdk-testing/framework-integ/test/aws-ecs/test/ec2/integ.default-capacity-provider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ cluster.addDefaultCapacityProviderStrategy([
3939
{ capacityProvider: 'FARGATE_SPOT', weight: 1 },
4040
]);
4141

42-
4342
new ecs.Ec2Service(stack, 'EC2Service', {
4443
cluster,
4544
taskDefinition,

packages/@aws-cdk-testing/framework-integ/test/aws-ecs/test/fargate/integ.fargate-with-efs.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import * as cdk from 'aws-cdk-lib';
44
import { Construct } from 'constructs';
55
import * as ecs from 'aws-cdk-lib/aws-ecs';
66

7-
87
class FargateWithEfsStack extends cdk.Stack {
98
constructor(scope: Construct, id: string, props?: cdk.StackProps) {
109
super(scope, id, props);

packages/@aws-cdk-testing/framework-integ/test/aws-ecs/test/fargate/integ.runtime.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const stack = new cdk.Stack(app, 'aws-ecs-integ-runtime');
77

88
const vpc = new ec2.Vpc(stack, 'Vpc', { maxAzs: 2, restrictDefaultSecurityGroup: false });
99

10-
1110
const cluster = new ecs.Cluster(stack, 'FargateCluster', {
1211
vpc,
1312
});

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.alb-controller.js.snapshot/asset.a21fb971385f0210c6b1c88a25f1b9986bae4e4e1bca8d4aa818c442e1878ddf/cluster.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { EksClient, ResourceEvent, ResourceHandler } from './common';
77
import { compareLoggingProps } from './compareLogging';
88
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';
99

10-
1110
const MAX_CLUSTER_NAME_LEN = 100;
1211

1312
export class ClusterResourceHandler extends ResourceHandler {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-bottlerocket-ng.js.snapshot/asset.a21fb971385f0210c6b1c88a25f1b9986bae4e4e1bca8d4aa818c442e1878ddf/cluster.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { EksClient, ResourceEvent, ResourceHandler } from './common';
77
import { compareLoggingProps } from './compareLogging';
88
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';
99

10-
1110
const MAX_CLUSTER_NAME_LEN = 100;
1211

1312
export class ClusterResourceHandler extends ResourceHandler {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster-handlers-vpc.js.snapshot/asset.a21fb971385f0210c6b1c88a25f1b9986bae4e4e1bca8d4aa818c442e1878ddf/cluster.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { EksClient, ResourceEvent, ResourceHandler } from './common';
77
import { compareLoggingProps } from './compareLogging';
88
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';
99

10-
1110
const MAX_CLUSTER_NAME_LEN = 100;
1211

1312
export class ClusterResourceHandler extends ResourceHandler {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster-private-endpoint.js.snapshot/asset.a21fb971385f0210c6b1c88a25f1b9986bae4e4e1bca8d4aa818c442e1878ddf/cluster.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { EksClient, ResourceEvent, ResourceHandler } from './common';
77
import { compareLoggingProps } from './compareLogging';
88
import { IsCompleteResponse, OnEventResponse } from '../../../custom-resources/lib/provider-framework/types';
99

10-
1110
const MAX_CLUSTER_NAME_LEN = 100;
1211

1312
export class ClusterResourceHandler extends ResourceHandler {

packages/@aws-cdk-testing/framework-integ/test/aws-eks/test/integ.eks-cluster-private-endpoint.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ class EksClusterStack extends Stack {
4242
}
4343
}
4444

45-
4645
const app = new App();
4746

4847
const stack = new EksClusterStack(app, 'aws-cdk-eks-cluster-private-endpoint-test');

0 commit comments

Comments
 (0)