Skip to content

Commit

Permalink
chore(codebuild): fix formatting errors (aws#28226)
Browse files Browse the repository at this point in the history
pet peeves

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
kaizencc authored and chenjane-dev committed Dec 5, 2023
1 parent fa2481a commit 09d882c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/aws-cdk-lib/aws-codebuild/lib/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export interface BuildEnvironmentCertificate {
* The bucket where the certificate is
*/
readonly bucket: s3.IBucket;

/**
* The full path and name of the key file
*/
Expand Down Expand Up @@ -774,7 +775,6 @@ export interface BindToCodePipelineOptions {
* A representation of a CodeBuild Project.
*/
export class Project extends ProjectBase {

public static fromProjectArn(scope: Construct, id: string, projectArn: string): IProject {
const parsedArn = Stack.of(scope).splitArn(projectArn, ArnFormat.SLASH_RESOURCE_NAME);

Expand Down Expand Up @@ -1923,7 +1923,7 @@ export enum WindowsImageType {
/**
* The WINDOWS_SERVER_2019_CONTAINER environment type
*/
SERVER_2019 = 'WINDOWS_SERVER_2019_CONTAINER'
SERVER_2019 = 'WINDOWS_SERVER_2019_CONTAINER',
}

/**
Expand Down Expand Up @@ -2133,7 +2133,7 @@ export enum BuildEnvironmentVariableType {
/**
* An environment variable stored in AWS Secrets Manager.
*/
SECRETS_MANAGER = 'SECRETS_MANAGER'
SECRETS_MANAGER = 'SECRETS_MANAGER',
}

/**
Expand Down
5 changes: 2 additions & 3 deletions packages/aws-cdk-lib/aws-codebuild/lib/report-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export enum ReportGroupType {
/**
* The report group contains code coverage reports.
*/
CODE_COVERAGE = 'CODE_COVERAGE'
CODE_COVERAGE = 'CODE_COVERAGE',
}

/**
Expand Down Expand Up @@ -118,14 +118,13 @@ export interface ReportGroupProps {
*
* @default TEST
*/
readonly type?: ReportGroupType
readonly type?: ReportGroupType;
}

/**
* The ReportGroup resource class.
*/
export class ReportGroup extends ReportGroupBase {

/**
* Reference an existing ReportGroup,
* defined outside of the CDK code,
Expand Down

0 comments on commit 09d882c

Please sign in to comment.