Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"packages/@aws-cdk-containers/*",
"packages/@aws-cdk-testing/*",
"packages/@aws-cdk/*/lambda-packages/*",
"tools/@aws-cdk/eslint-config",
"tools/@aws-cdk/cdk-build-tools",
"tools/@aws-cdk/user-input-gen",
"tools/@aws-cdk/cdk-release",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
"packages/awslint",
"packages/@aws-cdk-testing/*",
"packages/@aws-cdk/*/lambda-packages/*",
"tools/@aws-cdk/eslint-config",
"tools/@aws-cdk/cdk-build-tools",
"tools/@aws-cdk/user-input-gen",
"tools/@aws-cdk/cdk-release",
Expand Down
13 changes: 0 additions & 13 deletions packages/@aws-cdk-testing/framework-integ/.eslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion packages/@aws-cdk-testing/framework-integ/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.LAST_BUILD
*.snk
junit.xml
!.eslintrc.js
!eslint.config.mjs
.nyc_output
coverage
nyc.config.js
Expand Down
2 changes: 1 addition & 1 deletion packages/@aws-cdk-testing/framework-integ/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
.LAST_BUILD
*.snk
junit.xml
.eslintrc.js
eslint.config.mjs
# exclude cdk artifacts
**/cdk.out
11 changes: 11 additions & 0 deletions packages/@aws-cdk-testing/framework-integ/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { makeConfig } from '@aws-cdk/eslint-config';

const config = makeConfig('tsconfig.json');
for (const c of config) {
// Disable import/order rule, it's being violated all over the place
if (c.rules) {
c.rules['import/order'] = ['off'];
}
}

export default config;
14 changes: 0 additions & 14 deletions packages/@aws-cdk-testing/framework-integ/jest.config.js.bak

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"Description": "foo bar",
"Resources": {
"TopicProductD757E287": {
"Type": "AWS::SNS::Topic"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"Resources": {
"TopicProductD757E287": {
"Type": "AWS::SNS::Topic"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable no-console */

export const handler = async (event: AWSLambda.APIGatewayProxyEventV2) => {
const key = event.headers['x-api-key'];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ import {
import * as path from 'path';

const SCHEMA_STR =
`{
`{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "string"
}`;

const LAMBDA_CODE =
`
`
def handler(event, context):
print('This is my dummy validator')
`;
Expand Down

This file was deleted.

Loading
Loading