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:
Iván Ovejero
2023-10-27 14:15:02 +02:00
committed by GitHub
parent 1c4ac02db5
commit 62c096710f
477 changed files with 706 additions and 1003 deletions

View File

@@ -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 };

View File

@@ -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[] = [

View File

@@ -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[] = [

View File

@@ -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,

View File

@@ -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[] = [