refactor: Impose import/order linting rule across nodes packages (no-changelog) (#12314)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2024-12-19 18:46:14 +01:00
committed by GitHub
parent 8c635993bd
commit bafac73eb5
1120 changed files with 2677 additions and 2827 deletions

View File

@@ -1,7 +1,8 @@
import type { INodeProperties } from 'n8n-workflow';
import { activityPresend } from '../GenericFunctions';
import { emailsField } from './shared';
import { getAdditionalOptions, mapWith, showFor } from './utils';
import { activityPresend } from '../GenericFunctions';
const displayOpts = showFor(['activity']);

View File

@@ -1,6 +1,7 @@
import type { INodeProperties } from 'n8n-workflow';
import { automationPresend } from '../GenericFunctions';
import { mapWith, showFor } from './utils';
import { automationPresend } from '../GenericFunctions';
const displayOpts = showFor(['automation']);

View File

@@ -1,11 +1,12 @@
import type { INodeProperties } from 'n8n-workflow';
import { resources } from './resources';
import { activityOperations, activityFields } from './activityFields';
import { automationFields, automationOperations } from './automationFields';
import { memberFields, memberOperations } from './memberFields';
import { noteFields, noteOperations } from './noteFields';
import { organizationFields, organizationOperations } from './organizationFields';
import { resources } from './resources';
import { taskFields, taskOperations } from './taskFields';
import { automationFields, automationOperations } from './automationFields';
export const allProperties: INodeProperties[] = [
resources,

View File

@@ -1,7 +1,8 @@
import type { INodeProperties } from 'n8n-workflow';
import { memberPresend } from '../GenericFunctions';
import { getAdditionalOptions, getId, mapWith, showFor } from './utils';
import * as shared from './shared';
import { getAdditionalOptions, getId, mapWith, showFor } from './utils';
import { memberPresend } from '../GenericFunctions';
const displayOpts = showFor(['member']);

View File

@@ -1,6 +1,7 @@
import type { INodeProperties } from 'n8n-workflow';
import { notePresend } from '../GenericFunctions';
import { getId, mapWith, showFor } from './utils';
import { notePresend } from '../GenericFunctions';
const displayOpts = showFor(['note']);

View File

@@ -1,6 +1,7 @@
import type { INodeProperties } from 'n8n-workflow';
import { organizationPresend } from '../GenericFunctions';
import { getAdditionalOptions, getId, mapWith, showFor } from './utils';
import { organizationPresend } from '../GenericFunctions';
const displayOpts = showFor(['organization']);

View File

@@ -1,6 +1,7 @@
import type { INodeProperties } from 'n8n-workflow';
import { taskPresend } from '../GenericFunctions';
import { getAdditionalOptions, getId, showFor } from './utils';
import { taskPresend } from '../GenericFunctions';
const displayOpts = showFor(['task']);