-
Notifications
You must be signed in to change notification settings - Fork 595
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps-dev): bump prettier to v2 with .prettierrc (#1083)
* chore: prettier --write **/*.{ts,js,md,json} * chore: prettify integrationt tests * chore: prettify settings files * chore: yarn add -DW prettier --exact * chore: add .prettierrc * chore: added codegen/* to prettierignore * chore: bump prettier to 2.0.4
- Loading branch information
Showing
95 changed files
with
489 additions
and
484 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
**/*/CHANGELOG.md | ||
models/* | ||
codegen/* | ||
.github/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/prettierrc", | ||
"arrowParens": "avoid", | ||
"endOfLine": "auto", | ||
"trailingComma": "none" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,6 @@ | ||
module.exports = { | ||
extends: ['@commitlint/config-conventional'], | ||
extends: ["@commitlint/config-conventional"], | ||
rules: { | ||
"type-enum": [2, "always", [ | ||
'feat', | ||
'fix', | ||
'docs', | ||
'test', | ||
'chore' | ||
]] | ||
"type-enum": [2, "always", ["feat", "fix", "docs", "test", "chore"]] | ||
} | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const { ACM } = require("../../../clients/client-acm"); | ||
const { Before } = require("cucumber"); | ||
|
||
Before({ tags: "@acm" }, function(scenario, callback) { | ||
Before({ tags: "@acm" }, function (scenario, callback) { | ||
this.service = new ACM({}); | ||
callback(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const { APIGateway } = require("../../../clients/client-api-gateway"); | ||
const { Before } = require("cucumber"); | ||
|
||
Before({ tags: "@apigateway" }, function(scenario, callback) { | ||
Before({ tags: "@apigateway" }, function (scenario, callback) { | ||
this.service = new APIGateway({}); | ||
callback(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const { CodeCommit } = require("../../../clients/client-codecommit"); | ||
const { Before } = require("cucumber"); | ||
|
||
Before({ tags: "@codecommit" }, function(scenario, callback) { | ||
Before({ tags: "@codecommit" }, function (scenario, callback) { | ||
this.service = new CodeCommit({ region: "us-east-1" }); | ||
callback(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const { CodeDeploy } = require("../../../clients/client-codedeploy"); | ||
const { Before } = require("cucumber"); | ||
|
||
Before({ tags: "@codedeploy" }, function(scenario, callback) { | ||
Before({ tags: "@codedeploy" }, function (scenario, callback) { | ||
this.service = new CodeDeploy({}); | ||
callback(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const { CodePipeline } = require("../../../clients/client-codepipeline"); | ||
const { Before } = require("cucumber"); | ||
|
||
Before({ tags: "@codepipeline" }, function(scenario, callback) { | ||
Before({ tags: "@codepipeline" }, function (scenario, callback) { | ||
this.service = new CodePipeline({ region: "us-east-1" }); | ||
callback(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const { ConfigService } = require("../../../clients/client-config-service"); | ||
const { Before } = require("cucumber"); | ||
|
||
Before({ tags: "@configservice" }, function(scenario, callback) { | ||
Before({ tags: "@configservice" }, function (scenario, callback) { | ||
this.service = new ConfigService({}); | ||
callback(); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
const { DeviceFarm } = require("../../../clients/client-device-farm"); | ||
const { Before } = require("cucumber"); | ||
|
||
Before({ tags: "@devicefarm" }, function(scenario, callback) { | ||
Before({ tags: "@devicefarm" }, function (scenario, callback) { | ||
this.service = new DeviceFarm({ region: "us-west-2" }); | ||
callback(); | ||
}); |
Oops, something went wrong.