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

@@ -11,6 +11,7 @@ import type {
} from 'n8n-workflow';
import { NodeOperationError } from 'n8n-workflow';
import moment from 'moment';
import { channelFields, channelOperations } from './ChannelDescription';
import { messageFields, messageOperations } from './MessageDescription';
import { starFields, starOperations } from './StarDescription';
@@ -24,8 +25,6 @@ import type { IAttachment } from './MessageInterface';
import { oldVersionNotice } from '@utils/descriptions';
import moment from 'moment';
interface Attachment {
fields: {
item?: object[];

View File

@@ -17,6 +17,7 @@ import type {
import { BINARY_ENCODING, NodeOperationError } from 'n8n-workflow';
import moment from 'moment';
import { channelFields, channelOperations } from './ChannelDescription';
import { messageFields, messageOperations } from './MessageDescription';
import { starFields, starOperations } from './StarDescription';
@@ -31,8 +32,6 @@ import {
getMessageContent,
} from './GenericFunctions';
import moment from 'moment';
export class SlackV2 implements INodeType {
description: INodeTypeDescription;