mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 04:04:06 -08:00
refactor(core): Remove unused disable directives from backend packages (#10826)
This commit is contained in:
parent
460fe14ae1
commit
0e61d7c2e8
|
@ -14,7 +14,7 @@ import type { SourceControlledFile } from '../types/source-controlled-file';
|
||||||
// https://github.com/jestjs/jest/issues/4715
|
// https://github.com/jestjs/jest/issues/4715
|
||||||
function deepSpyOn<O extends object, M extends keyof O>(object: O, methodName: M) {
|
function deepSpyOn<O extends object, M extends keyof O>(object: O, methodName: M) {
|
||||||
const spy = jest.fn();
|
const spy = jest.fn();
|
||||||
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
||||||
const originalMethod = object[methodName];
|
const originalMethod = object[methodName];
|
||||||
|
|
||||||
if (typeof originalMethod !== 'function') {
|
if (typeof originalMethod !== 'function') {
|
||||||
|
|
|
@ -21,12 +21,10 @@ function modifyUnderscoredKeys(
|
||||||
result[key] = modifier(input[key]);
|
result[key] = modifier(input[key]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment
|
|
||||||
result[key] = input[key];
|
result[key] = input[key];
|
||||||
}
|
}
|
||||||
} else if (typeof input[key] === 'object') {
|
} else if (typeof input[key] === 'object') {
|
||||||
if (Array.isArray(input[key])) {
|
if (Array.isArray(input[key])) {
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call
|
|
||||||
result[key] = input[key].map((item: any) => {
|
result[key] = input[key].map((item: any) => {
|
||||||
if (typeof item === 'object' && !Array.isArray(item)) {
|
if (typeof item === 'object' && !Array.isArray(item)) {
|
||||||
return modifyUnderscoredKeys(item, modifier);
|
return modifyUnderscoredKeys(item, modifier);
|
||||||
|
|
|
@ -950,8 +950,6 @@ export class TelemetryEventRelay extends EventRelay {
|
||||||
}: RelayEventMap['user-submitted-personalization-survey']) {
|
}: RelayEventMap['user-submitted-personalization-survey']) {
|
||||||
const personalizationSurveyData = { user_id: userId } as Record<string, string | string[]>;
|
const personalizationSurveyData = { user_id: userId } as Record<string, string | string[]>;
|
||||||
|
|
||||||
// ESlint is wrong here
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
|
|
||||||
for (const [camelCaseKey, value] of Object.entries(answers)) {
|
for (const [camelCaseKey, value] of Object.entries(answers)) {
|
||||||
if (value) {
|
if (value) {
|
||||||
personalizationSurveyData[snakeCase(camelCaseKey)] = value;
|
personalizationSurveyData[snakeCase(camelCaseKey)] = value;
|
||||||
|
|
Loading…
Reference in a new issue