Skip to content

Commit

Permalink
fix the code pipeline 'prettier' lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo Deza committed Oct 19, 2023
1 parent 78e0757 commit 92536f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ import { Config } from "../config/config";
export class PipelineStack extends Stack {
constructor(scope: Construct, id: string, props: StackProps) {
super(scope, id, props);
const repo = Repository.fromRepositoryName(
this,
"CodeCommitRepo",
"{{GB_APP_ID}}",
);
const repo = Repository.fromRepositoryName(this, "CodeCommitRepo", "{{GB_APP_ID}}");
const pipeline = new CodePipeline(this, "CdkPipeline", {
// crossAccountKeys: true,
selfMutation: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,7 @@ import { Config } from "../config/config";
export class PipelineStack extends Stack {
constructor(scope: Construct, id: string, props: StackProps) {
super(scope, id, props);
const repo = Repository.fromRepositoryName(
this,
"CodeCommitRepo",
"{{GB_APP_ID}}",
);
const repo = Repository.fromRepositoryName(this, "CodeCommitRepo", "{{GB_APP_ID}}");
const pipeline = new CodePipeline(this, "CdkPipeline", {
// crossAccountKeys: true,
selfMutation: true,
Expand Down

0 comments on commit 92536f8

Please sign in to comment.