Skip to content

Commit 825538a

Browse files
authored
chore: prettify JS code missed in aws#1185 (aws#1386)
1 parent ea25257 commit 825538a

File tree

151 files changed

+829
-1352
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+829
-1352
lines changed

clients/client-cognito-identity/karma.conf.js

+16-19
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ module.exports = function (config) {
44
frameworks: ["mocha", "chai"],
55
files: ["e2e/**/*.ispec.ts"],
66
preprocessors: {
7-
"e2e/**/*.ispec.ts": ["webpack", "sourcemap", "credentials", "env"]
7+
"e2e/**/*.ispec.ts": ["webpack", "sourcemap", "credentials", "env"],
88
},
99
webpackMiddleware: {
10-
stats: "minimal"
10+
stats: "minimal",
1111
},
1212
webpack: {
1313
resolve: {
14-
extensions: [".ts", ".js"]
14+
extensions: [".ts", ".js"],
1515
},
1616
mode: "development",
1717
module: {
@@ -24,21 +24,18 @@ module.exports = function (config) {
2424
options: {
2525
configFile: "tsconfig.json",
2626
compilerOptions: {
27-
rootDir: "./"
28-
}
29-
}
30-
}
27+
rootDir: "./",
28+
},
29+
},
30+
},
3131
],
32-
exclude: /node_modules/
33-
}
34-
]
32+
exclude: /node_modules/,
33+
},
34+
],
3535
},
36-
devtool: "inline-source-map"
36+
devtool: "inline-source-map",
3737
},
38-
envPreprocessor: [
39-
"AWS_SMOKE_TEST_REGION",
40-
"AWS_SMOKE_TEST_IDENTITY_POOL_ID"
41-
],
38+
envPreprocessor: ["AWS_SMOKE_TEST_REGION", "AWS_SMOKE_TEST_IDENTITY_POOL_ID"],
4239
plugins: [
4340
"@aws-sdk/karma-credential-loader",
4441
"karma-chrome-launcher",
@@ -48,7 +45,7 @@ module.exports = function (config) {
4845
"karma-webpack",
4946
"karma-coverage",
5047
"karma-sourcemap-loader",
51-
"karma-env-preprocessor"
48+
"karma-env-preprocessor",
5249
],
5350
reporters: ["progress"],
5451
port: 9876,
@@ -59,11 +56,11 @@ module.exports = function (config) {
5956
customLaunchers: {
6057
FirefoxHeadless: {
6158
base: "Firefox",
62-
flags: ["-headless"]
63-
}
59+
flags: ["-headless"],
60+
},
6461
},
6562
singleRun: true,
6663
concurrency: Infinity,
67-
exclude: ["**/*.d.ts", "*.spec.ts"]
64+
exclude: ["**/*.d.ts", "*.spec.ts"],
6865
});
6966
};

clients/client-s3/karma.conf.js

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ module.exports = function (config) {
44
frameworks: ["mocha", "chai"],
55
files: ["e2e/**/*.ispec.ts"],
66
preprocessors: {
7-
"e2e/**/*.ispec.ts": ["webpack", "sourcemap", "credentials", "env"]
7+
"e2e/**/*.ispec.ts": ["webpack", "sourcemap", "credentials", "env"],
88
},
99
webpackMiddleware: {
10-
stats: "minimal"
10+
stats: "minimal",
1111
},
1212
webpack: {
1313
resolve: {
14-
extensions: [".ts", ".js"]
14+
extensions: [".ts", ".js"],
1515
},
1616
mode: "development",
1717
module: {
@@ -24,16 +24,16 @@ module.exports = function (config) {
2424
options: {
2525
configFile: "tsconfig.json",
2626
compilerOptions: {
27-
rootDir: "./"
28-
}
29-
}
30-
}
27+
rootDir: "./",
28+
},
29+
},
30+
},
3131
],
32-
exclude: /node_modules/
33-
}
34-
]
32+
exclude: /node_modules/,
33+
},
34+
],
3535
},
36-
devtool: "inline-source-map"
36+
devtool: "inline-source-map",
3737
},
3838
envPreprocessor: ["AWS_SMOKE_TEST_REGION", "AWS_SMOKE_TEST_BUCKET"],
3939
plugins: [
@@ -45,7 +45,7 @@ module.exports = function (config) {
4545
"karma-webpack",
4646
"karma-coverage",
4747
"karma-sourcemap-loader",
48-
"karma-env-preprocessor"
48+
"karma-env-preprocessor",
4949
],
5050
reporters: ["progress"],
5151
port: 9876,
@@ -56,11 +56,11 @@ module.exports = function (config) {
5656
customLaunchers: {
5757
FirefoxHeadless: {
5858
base: "Firefox",
59-
flags: ["-headless"]
60-
}
59+
flags: ["-headless"],
60+
},
6161
},
6262
singleRun: true,
6363
concurrency: Infinity,
64-
exclude: ["**/*.d.ts", "*.spec.ts"]
64+
exclude: ["**/*.d.ts", "*.spec.ts"],
6565
});
6666
};

clients/client-transcribe-streaming/jest.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ module.exports = {
88
"/node_modules/",
99
"/commands/",
1010
"/protocols/", // protocols tested in protocol protocol_tests folder
11-
"endpoints" // endpoint tested in tests/functional/endpoints
12-
]
11+
"endpoints", // endpoint tested in tests/functional/endpoints
12+
],
1313
};

clients/client-transcribe-streaming/jest.integ.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ const base = require("../../jest.config.base.js");
22

33
module.exports = {
44
...base,
5-
testMatch: ["**/*.integ.spec.js"]
5+
testMatch: ["**/*.integ.spec.js"],
66
};

commitlint.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
extends: ["@commitlint/config-conventional"],
33
rules: {
4-
"type-enum": [2, "always", ["feat", "fix", "docs", "test", "chore"]]
5-
}
4+
"type-enum": [2, "always", ["feat", "fix", "docs", "test", "chore"]],
5+
},
66
};

features/autoscaling/step_definitions/autoscaling.js

+4-12
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,11 @@ Before({ tags: "@autoscaling" }, function (scenario, callback) {
66
callback();
77
});
88

9-
Given("I create a launch configuration with name {string}", function (
10-
name,
11-
callback
12-
) {
9+
Given("I create a launch configuration with name {string}", function (name, callback) {
1310
const params = {
1411
ImageId: "ami-1624987f",
1512
InstanceType: "m1.small",
16-
LaunchConfigurationName: name
13+
LaunchConfigurationName: name,
1714
};
1815
this.request(null, "createLaunchConfiguration", params, callback, false);
1916
});
@@ -22,13 +19,8 @@ Given("I describe launch configurations", function (callback) {
2219
this.request(null, "describeLaunchConfigurations", {}, callback);
2320
});
2421

25-
Then("the list should contain the launch configuration {string}", function (
26-
name,
27-
callback
28-
) {
29-
this.assert.contains(this.data.LaunchConfigurations, function (
30-
configuration
31-
) {
22+
Then("the list should contain the launch configuration {string}", function (name, callback) {
23+
this.assert.contains(this.data.LaunchConfigurations, function (configuration) {
3224
return configuration.LaunchConfigurationName === name;
3325
});
3426
callback();

features/cloudformation/step_definitions/cloudformation.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,13 @@ Before({ tags: "@cloudformation" }, function (scenario, callback) {
66
callback();
77
});
88

9-
Given("I create a CloudFormation stack with name prefix {string}", function (
10-
prefix,
11-
callback
12-
) {
9+
Given("I create a CloudFormation stack with name prefix {string}", function (prefix, callback) {
1310
this.stackName = this.uniqueName(prefix);
1411
this.templateBody = '{"Resources":{"member":{"Type":"AWS::SQS::Queue"}}}';
1512
const params = {
1613
TemplateBody: this.templateBody,
1714
StackName: this.stackName,
18-
EnableTerminationProtection: true
15+
EnableTerminationProtection: true,
1916
};
2017
this.request(null, "createStack", params, callback, false);
2118
});

features/cloudfront/step_definitions/cloudfront.js

+15-25
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const { Before, Given } = require("cucumber");
44
const createParams = {
55
CallerReference: "",
66
Aliases: {
7-
Quantity: 0
7+
Quantity: 0,
88
},
99
DefaultRootObject: "",
1010
Origins: {
@@ -15,41 +15,41 @@ const createParams = {
1515
CustomOriginConfig: {
1616
HTTPPort: 80,
1717
HTTPSPort: 443,
18-
OriginProtocolPolicy: "match-viewer"
19-
}
20-
}
18+
OriginProtocolPolicy: "match-viewer",
19+
},
20+
},
2121
],
22-
Quantity: 1
22+
Quantity: 1,
2323
},
2424
DefaultCacheBehavior: {
2525
TargetOriginId: "origin",
2626
ForwardedValues: {
2727
QueryString: false,
2828
Cookies: {
29-
Forward: "all"
30-
}
29+
Forward: "all",
30+
},
3131
},
3232
TrustedSigners: {
3333
Items: [],
3434
Enabled: false,
35-
Quantity: 0
35+
Quantity: 0,
3636
},
3737
ViewerProtocolPolicy: "allow-all",
38-
MinTTL: 0
38+
MinTTL: 0,
3939
},
4040
CacheBehaviors: {
4141
Items: [],
42-
Quantity: 0
42+
Quantity: 0,
4343
},
4444
Comment: "",
4545
Logging: {
4646
Enabled: false,
4747
Bucket: "invalidbucket.s3.amazonaws.com",
4848
Prefix: "prefix",
49-
IncludeCookies: false
49+
IncludeCookies: false,
5050
},
5151
PriceClass: "PriceClass_All",
52-
Enabled: false
52+
Enabled: false,
5353
};
5454

5555
Before({ tags: "@cloudfront" }, function (scenario, callback) {
@@ -58,21 +58,11 @@ Before({ tags: "@cloudfront" }, function (scenario, callback) {
5858
callback();
5959
});
6060

61-
Given("I create a CloudFront distribution with name prefix {string}", function (
62-
prefix,
63-
callback
64-
) {
61+
Given("I create a CloudFront distribution with name prefix {string}", function (prefix, callback) {
6562
this.cfName = this.uniqueName(prefix);
6663
this.cfCreateParams.CallerReference = this.cfName;
67-
this.cfCreateParams.Origins.Items[0].Id =
68-
this.cfName === "" ? "origin" : "InvalidOrigin";
69-
this.request(
70-
null,
71-
"createDistribution",
72-
{ DistributionConfig: this.cfCreateParams },
73-
callback,
74-
false
75-
);
64+
this.cfCreateParams.Origins.Items[0].Id = this.cfName === "" ? "origin" : "InvalidOrigin";
65+
this.request(null, "createDistribution", { DistributionConfig: this.cfCreateParams }, callback, false);
7666
});
7767

7868
Given("I list CloudFront distributions", function (callback) {

features/cloudsearch/step_definitions/cloudsearch.js

+2-11
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,7 @@ Before({ tags: "@cloudsearch" }, function (scenario, callback) {
66
callback();
77
});
88

9-
Given("I create a domain with name prefix {string}", function (
10-
prefix,
11-
callback
12-
) {
9+
Given("I create a domain with name prefix {string}", function (prefix, callback) {
1310
this.domainName = this.uniqueName(prefix);
14-
this.request(
15-
null,
16-
"createDomain",
17-
{ DomainName: this.domainName },
18-
callback,
19-
false
20-
);
11+
this.request(null, "createDomain", { DomainName: this.domainName }, callback, false);
2112
});

features/cloudtrail/step_definitions/cloudtrail.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,5 @@ Given("I describe trails", function (callback) {
1111
});
1212

1313
Given("I create a trail with an invalid name", function (callback) {
14-
this.request(
15-
null,
16-
"createTrail",
17-
{ Name: "", S3BucketName: "" },
18-
callback,
19-
false
20-
);
14+
this.request(null, "createTrail", { Name: "", S3BucketName: "" }, callback, false);
2115
});

0 commit comments

Comments
 (0)