refactor(core): Remove linting exceptions in nodes-base (#4794)
* ⚡ enabled array-type * ⚡ await-thenable on * ⚡ ban-types on * ⚡ default-param-last on * ⚡ dot-notation on * ⚡ member-delimiter-style on * ⚡ no-duplicate-imports on * ⚡ no-empty-interface on * ⚡ no-floating-promises on * ⚡ no-for-in-array on * ⚡ no-invalid-void-type on * ⚡ no-loop-func on * ⚡ no-shadow on * ⚡ ban-ts-comment re enabled * ⚡ @typescript-eslint/lines-between-class-members on * address my own comment * @typescript-eslint/return-await on * @typescript-eslint/promise-function-async on * @typescript-eslint/no-unnecessary-boolean-literal-compare on * @typescript-eslint/no-unnecessary-type-assertion on * prefer-const on * @typescript-eslint/prefer-optional-chain on Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
@@ -356,7 +356,7 @@ export class AwsRekognition implements INodeType {
|
||||
// property = 'ModerationLabels';
|
||||
|
||||
if (additionalFields.minConfidence) {
|
||||
body['MinConfidence'] = additionalFields.minConfidence as number;
|
||||
body.MinConfidence = additionalFields.minConfidence as number;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -370,7 +370,7 @@ export class AwsRekognition implements INodeType {
|
||||
// property = 'FaceDetails';
|
||||
|
||||
if (additionalFields.attributes) {
|
||||
body['Attributes'] = additionalFields.attributes as string;
|
||||
body.Attributes = additionalFields.attributes as string;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -378,11 +378,11 @@ export class AwsRekognition implements INodeType {
|
||||
action = 'RekognitionService.DetectLabels';
|
||||
|
||||
if (additionalFields.minConfidence) {
|
||||
body['MinConfidence'] = additionalFields.minConfidence as number;
|
||||
body.MinConfidence = additionalFields.minConfidence as number;
|
||||
}
|
||||
|
||||
if (additionalFields.maxLabels) {
|
||||
body['MaxLabels'] = additionalFields.maxLabels as number;
|
||||
body.MaxLabels = additionalFields.maxLabels as number;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -396,13 +396,13 @@ export class AwsRekognition implements INodeType {
|
||||
body.Filters = {};
|
||||
|
||||
const box =
|
||||
(((additionalFields.regionsOfInterestUi as IDataObject) || {})
|
||||
.regionsOfInterestValues as IDataObject[]) || [];
|
||||
((additionalFields.regionsOfInterestUi as IDataObject)
|
||||
?.regionsOfInterestValues as IDataObject[]) || [];
|
||||
|
||||
if (box.length !== 0) {
|
||||
//@ts-ignore
|
||||
body.Filters.RegionsOfInterest = box.map((box: IDataObject) => {
|
||||
return { BoundingBox: keysTPascalCase(box) };
|
||||
body.Filters.RegionsOfInterest = box.map((entry: IDataObject) => {
|
||||
return { BoundingBox: keysTPascalCase(entry) };
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user