Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
Signed-off-by: Sumu <[email protected]>
  • Loading branch information
sumupitchayan committed Oct 25, 2024
1 parent 299733d commit 31afea1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/core/lib/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class App extends Stage {
if (autoSynth) {
// synth() guarantees it will only execute once, so a default of 'true'
// doesn't bite manual calling of the function.
process.once('beforeExit', () => this.synth({warnInsteadOfError: true}));
process.once('beforeExit', () => this.synth({ warnInsteadOfError: true }));
}

this._treeMetadata = props.treeMetadata ?? true;
Expand Down
2 changes: 1 addition & 1 deletion packages/aws-cdk-lib/core/lib/stage.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { IConstruct, Construct, Node } from 'constructs';
import { Annotations } from './annotations';
import { Environment } from './environment';
import { PermissionsBoundary } from './permissions-boundary';
import { synthesize } from './private/synthesis';
import { IPolicyValidationPluginBeta1 } from './validation';
import * as cxapi from '../../cx-api';
import { Annotations } from './annotations';

const STAGE_SYMBOL = Symbol.for('@aws-cdk/core.Stage');

Expand Down

0 comments on commit 31afea1

Please sign in to comment.