mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +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,5 @@
|
||||
import { access, mkdir } from 'fs/promises';
|
||||
import { URL } from 'url';
|
||||
import type {
|
||||
IExecuteFunctions,
|
||||
INodeExecutionData,
|
||||
@@ -5,6 +7,8 @@ import type {
|
||||
INodeTypeDescription,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
import type { LogOptions, SimpleGit, SimpleGitOptions } from 'simple-git';
|
||||
import simpleGit from 'simple-git';
|
||||
import {
|
||||
addConfigFields,
|
||||
addFields,
|
||||
@@ -15,13 +19,6 @@ import {
|
||||
tagFields,
|
||||
} from './descriptions';
|
||||
|
||||
import type { LogOptions, SimpleGit, SimpleGitOptions } from 'simple-git';
|
||||
import simpleGit from 'simple-git';
|
||||
|
||||
import { access, mkdir } from 'fs/promises';
|
||||
|
||||
import { URL } from 'url';
|
||||
|
||||
export class Git implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Git',
|
||||
|
||||
Reference in New Issue
Block a user