Skip to content

Commit

Permalink
fix bad eslint-disable comment
Browse files Browse the repository at this point in the history
  • Loading branch information
MrArnoldPalmer committed Mar 30, 2023
1 parent bf7d4f7 commit 029d286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/@aws-cdk/remodel/lib/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ async function reformatCliPackage(dir: string) {
return line.replace('@aws-cdk/core', 'aws-cdk-lib');
});

return ['// eslint-disable import/order', ...lines].join('\n');
return ['/* eslint-disable import/order */', ...lines].join('\n');
});

// Use cloud-assembly-schema from aws-cdk-lib in test so it matches correctly
Expand Down

0 comments on commit 029d286

Please sign in to comment.