mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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,11 +1,10 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
import * as getAll from './getAll';
|
||||
import * as create from './create';
|
||||
import * as get from './get';
|
||||
import * as update from './update';
|
||||
import * as del from './del';
|
||||
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export { getAll, create, del as delete, update, get };
|
||||
|
||||
export const descriptions = [
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
import * as getAll from './getAll';
|
||||
import * as create from './create';
|
||||
import * as del from './del';
|
||||
import * as update from './update';
|
||||
import * as get from './get';
|
||||
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export { getAll, create, del as delete, update, get };
|
||||
|
||||
export const descriptions = [
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
import * as get from './get';
|
||||
import * as getAll from './getAll';
|
||||
import * as create from './create';
|
||||
import * as del from './del';
|
||||
import * as mute from './mute';
|
||||
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export { getAll, get, mute, del as delete, create };
|
||||
|
||||
export const descriptions = [
|
||||
|
||||
@@ -1,11 +1,10 @@
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
import * as getAll from './getAll';
|
||||
import * as create from './create';
|
||||
import * as get from './get';
|
||||
import * as del from './del';
|
||||
import * as update from './update';
|
||||
|
||||
import type { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export { getAll, create, get, del as delete, update };
|
||||
|
||||
export const descriptions = [
|
||||
|
||||
Reference in New Issue
Block a user