Skip to content

Commit 98be791

Browse files
Fix prettier formatting issues
Co-authored-by: rita-gorokhod <60586879+rita-gorokhod@users.noreply.github.com>
1 parent 7e2b25e commit 98be791

26 files changed

Lines changed: 80 additions & 40 deletions

File tree

packages/blocks/anodot/src/lib/api-filters/annual-savings-property.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ export function annualSavingsProperty() {
99

1010
annualSavingsProperty: Property.DynamicProperties({
1111
displayName: 'Annual Savings Greater Than',
12-
description: 'Only get recommendations where the annual savings are greater than',
12+
description:
13+
'Only get recommendations where the annual savings are greater than',
1314
required: true,
1415
refreshers: ['useAnnualSavings'],
1516
props: async ({ useAnnualSavings }): Promise<{ [key: string]: any }> => {
@@ -20,7 +21,8 @@ export function annualSavingsProperty() {
2021
return {
2122
annualSavingsMin: Property.Number({
2223
displayName: 'Annual Savings Greater Than',
23-
description: 'Only get recommendations where the annual savings are greater than',
24+
description:
25+
'Only get recommendations where the annual savings are greater than',
2426
required: true,
2527
}),
2628
};

packages/blocks/anodot/src/lib/update-user-status-action.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,14 @@ export const updateUserStatusAction = createAction({
4848
return {
4949
label_add: Property.LongText({
5050
displayName: 'Add Labels',
51-
description: 'A comma seperated list of labels to add to the recommendation',
51+
description:
52+
'A comma seperated list of labels to add to the recommendation',
5253
required: false,
5354
}),
5455
label_delete: Property.LongText({
5556
displayName: 'Delete Labels',
56-
description: 'A comma seperated list of labels to remove from the recommendation',
57+
description:
58+
'A comma seperated list of labels to remove from the recommendation',
5759
required: false,
5860
}),
5961
};

packages/blocks/archera/src/lib/actions/get-commitment-inventory.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ export const getCommitmentsInventoryAction = createAction({
2525
}),
2626
startDate: Property.ShortText({
2727
displayName: 'Start Date',
28-
description: 'The start date for the commitment inventory query (Format: yyyy-MM-dd)',
28+
description:
29+
'The start date for the commitment inventory query (Format: yyyy-MM-dd)',
2930
required: true,
3031
}),
3132
endDate: Property.ShortText({
3233
displayName: 'End Date',
33-
description: 'The end date for the commitment inventory query (Format: yyyy-MM-dd)',
34+
description:
35+
'The end date for the commitment inventory query (Format: yyyy-MM-dd)',
3436
required: true,
3537
}),
3638
search: Property.ShortText({

packages/blocks/aws/src/lib/actions/ec2/ec2-modify-instance-action.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,8 @@ function getPropertyWithAttributeName(attributeName: string) {
124124
case 'DisableApiStop': {
125125
return Property.Checkbox({
126126
displayName: 'Disable API Stop',
127-
description: 'Indicates whether an instance is enabled for stop protection',
127+
description:
128+
'Indicates whether an instance is enabled for stop protection',
128129
required: true,
129130
});
130131
}
@@ -139,14 +140,16 @@ function getPropertyWithAttributeName(attributeName: string) {
139140
case 'EnaSupport': {
140141
return Property.Checkbox({
141142
displayName: 'Enable Ena Support',
142-
description: 'Set to true to enable enhanced networking with ENA for the instance',
143+
description:
144+
'Set to true to enable enhanced networking with ENA for the instance',
143145
required: true,
144146
});
145147
}
146148
case 'SriovNetSupport': {
147149
return Property.Checkbox({
148150
displayName: 'Enable SR-IOV Net Support',
149-
description: 'Sets the SR-IOV Net Support to simple to enable enhanced networking with the Intel 82599 Virtual Function interface for the instance',
151+
description:
152+
'Sets the SR-IOV Net Support to simple to enable enhanced networking with the Intel 82599 Virtual Function interface for the instance',
150153
required: true,
151154
});
152155
}

packages/blocks/aws/src/lib/actions/rds/rds-create-snapshot-action.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ export const rdsCreateSnapshotAction = createAction({
2323
}),
2424
snapshotId: Property.LongText({
2525
displayName: 'Snapshot Id',
26-
description: 'If not provided, it will be automatically generated using the DB instance ID combined with the current timestamp',
26+
description:
27+
'If not provided, it will be automatically generated using the DB instance ID combined with the current timestamp',
2728
required: false,
2829
}),
2930
tags: Property.Object({

packages/blocks/cloudability/src/lib/actions/get-recommendations-action.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ export const getRecommendationsAction = createAction({
2222
...getRecommendationTypesProperty(),
2323
duration: Property.StaticDropdown({
2424
displayName: 'Look-Back Period',
25-
description: 'The look back period in days, used for calculating the recommendations',
25+
description:
26+
'The look back period in days, used for calculating the recommendations',
2627
required: true,
2728
defaultValue: Duration.TenDay,
2829
options: {

packages/blocks/cloudformation/src/lib/get/get-stack.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ export const getStack = createAction({
1111
auth: amazonAuth,
1212
name: 'get_stack_template',
1313
displayName: 'Get Cloudformation Template',
14-
description: 'Get the CloudFormation stack template that matches the given arn',
14+
description:
15+
'Get the CloudFormation stack template that matches the given arn',
1516
isWriteAction: false,
1617
props: {
1718
arn: Property.ShortText({

packages/blocks/common/src/lib/helpers/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ export function createCustomApiCallAction({
8686
}),
8787
headers: Property.Object({
8888
displayName: 'Headers',
89-
description: 'Authorization headers are injected automatically from your connection',
89+
description:
90+
'Authorization headers are injected automatically from your connection',
9091
required: false,
9192
}),
9293
queryParams: Property.Object({

packages/blocks/databricks/src/lib/actions/execute-sql-statement.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ export const executeSqlStatement = createAction({
1414
name: 'executeSqlStatement',
1515
auth: databricksAuth,
1616
displayName: 'Execute Sql Statement',
17-
description: 'Run a SQL query in a Databricks workspace and retrieve results using a specified warehouse',
17+
description:
18+
'Run a SQL query in a Databricks workspace and retrieve results using a specified warehouse',
1819
isWriteAction: true,
1920
props: {
2021
workspaceDeploymentName: workspaceDeploymentName,

packages/blocks/databricks/src/lib/actions/run-job.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ export const runJob = createAction({
2222
}),
2323
timeout: Property.Number({
2424
displayName: 'Job Timeout',
25-
description: 'Maximum number of seconds to wait for all task in the job to complete before timing out',
25+
description:
26+
'Maximum number of seconds to wait for all task in the job to complete before timing out',
2627
required: true,
2728
validators: [Validators.number, Validators.minValue(0)],
2829
defaultValue: 50,

0 commit comments

Comments
 (0)