mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor: Run lintfix (no-changelog) (#7537)
- Fix autofixable violations - Remove unused directives - Allow for PascalCased variables - needed for dynamically imported or assigned classes, decorators, routers, etc.
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
import * as create from './create';
|
||||
import * as del from './del';
|
||||
import * as members from './members';
|
||||
@@ -5,7 +6,6 @@ import * as restore from './restore';
|
||||
import * as addUser from './addUser';
|
||||
import * as statistics from './statistics';
|
||||
import * as search from './search';
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export { create, del as delete, members, restore, addUser, statistics, search };
|
||||
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
import * as del from './del';
|
||||
import * as post from './post';
|
||||
import * as postEphemeral from './postEphemeral';
|
||||
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export { del as delete, post, postEphemeral };
|
||||
|
||||
export const descriptions: INodeProperties[] = [
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
import * as create from './create';
|
||||
import * as del from './del';
|
||||
import * as getAll from './getAll';
|
||||
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export { create, del as delete, getAll };
|
||||
|
||||
export const descriptions: INodeProperties[] = [
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
|
||||
import { NodeOperationError } from 'n8n-workflow';
|
||||
|
||||
import { apiRequest, apiRequestAllItems } from '../../../transport';
|
||||
|
||||
import { snakeCase } from 'change-case';
|
||||
import { apiRequest, apiRequestAllItems } from '../../../transport';
|
||||
|
||||
export async function getAll(
|
||||
this: IExecuteFunctions,
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
import * as create from './create';
|
||||
import * as deactive from './deactive';
|
||||
import * as getAll from './getAll';
|
||||
@@ -5,8 +6,6 @@ import * as getByEmail from './getByEmail';
|
||||
import * as getById from './getById';
|
||||
import * as invite from './invite';
|
||||
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export { create, deactive, getAll, getByEmail, getById, invite };
|
||||
|
||||
export const descriptions: INodeProperties[] = [
|
||||
|
||||
Reference in New Issue
Block a user