Skip to content

Commit

Permalink
disable import/order lint in fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
MrArnoldPalmer committed Mar 30, 2023
1 parent b97eb78 commit e85b556
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 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 e85b556

Please sign in to comment.