Skip to content

Commit 6f1f7d4

Browse files
committed
Boomboom
1 parent dbea9ce commit 6f1f7d4

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

packages/aws-cdk-lib/custom-resources/lib/provider-framework/runtime/framework.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @cdklabs/no-throw-default-error */
12

23
/* eslint-disable max-len */
34

packages/aws-cdk-lib/custom-resources/lib/provider-framework/runtime/util.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @cdklabs/no-throw-default-error */
12

23
/* eslint-disable no-console */
34

packages/aws-cdk-lib/cx-api/lib/features.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable @cdklabs/no-throw-default-error */
12
import { FlagInfo, FlagType } from './private/flag-modeling';
23

34
////////////////////////////////////////////////////////////////////////
@@ -157,10 +158,10 @@ export const FLAGS: Record<string, FlagInfo> = {
157158
detailsMd: `
158159
When enabled, the \`signingProfileName\` property is passed to the L1 \`CfnSigningProfile\` construct,
159160
which ensures that the AWS Signer profile is created with the specified name.
160-
161+
161162
When disabled, the \`signingProfileName\` is not passed to CloudFormation, maintaining backward
162163
compatibility with existing deployments where CloudFormation auto-generated profile names.
163-
164+
164165
This feature flag is needed because enabling it can cause existing signing profiles to be
165166
replaced during deployment if a \`signingProfileName\` was specified but not previously used
166167
in the CloudFormation template.`,

tools/@aws-cdk/eslint-config/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ export function makeConfig(/** @type{string} */ tsconfigFile, /** @type{any} */
7676
// Ignores must be an object by itself and apply to all rules, otherwise it won't work.
7777
{ ignores: ['**/*.js'] },
7878
{ ...baseConfig, rules: makeRules() },
79-
// For additional rules for construct libraries, we'll just assume that all source files are in the 'lib' subdirectory (ignores still apply)
80-
isConstructLibrary ? { ...baseConfig, files: ['lib/**/*.ts'], rules: makeConstructLibRules() } : {},
79+
// For additional rules for construct libraries, we'll just assume that all source files are in 'lib' subdirectories (ignores still apply)
80+
isConstructLibrary ? { ...baseConfig, files: ['lib/**/*.ts', '*/lib/**/*.ts'], rules: makeConstructLibRules() } : {},
8181
);
8282
}
8383

0 commit comments

Comments
 (0)