ci: Enforce no unused imports (no-changelog) (#6073)

This commit is contained in:
Iván Ovejero
2023-04-25 11:47:03 +02:00
committed by GitHub
parent f3b4701863
commit 88724bb056
61 changed files with 98 additions and 94 deletions

View File

@@ -1,10 +1,8 @@
import { defineStore } from 'pinia';
import { useSettingsStore } from '@/stores/settings';
import { computed, ref } from 'vue';
import type { EnvironmentVariable } from '@/Interface';
import * as environmentsApi from '@/api/environments.ee';
import { useRootStore } from '@/stores/n8nRootStore';
import { createVariable } from '@/api/environments.ee';
export const useEnvironmentsStore = defineStore('environments', () => {
const rootStore = useRootStore();

View File

@@ -1,6 +1,5 @@
import { AddConnectionCommand, COMMANDS, RemoveConnectionCommand } from './../models/history';
import type { Command, Undoable } from '@/models/history';
import { BulkCommand, MoveNodeCommand } from '@/models/history';
import { BulkCommand } from '@/models/history';
import { STORES } from '@/constants';
import type { HistoryState } from '@/Interface';
import { defineStore } from 'pinia';

View File

@@ -13,7 +13,6 @@ import { deepCopy } from 'n8n-workflow';
import {
STORES,
MANUAL_TRIGGER_NODE_TYPE,
CORE_NODES_CATEGORY,
TRIGGER_NODE_FILTER,
STICKY_NODE_TYPE,
NODE_CREATOR_OPEN_SOURCES,

View File

@@ -1,4 +1,4 @@
import { computed, reactive, ref } from 'vue';
import { computed, reactive } from 'vue';
import { defineStore } from 'pinia';
import { EnterpriseEditionFeature } from '@/constants';
import { useRootStore } from '@/stores/n8nRootStore';

View File

@@ -20,12 +20,7 @@ import {
validatePasswordToken,
validateSignupToken,
} from '@/api/users';
import {
PERSONALIZATION_MODAL_KEY,
USER_ACTIVATION_SURVEY_MODAL,
STORES,
LOCAL_STORAGE_ACTIVE_MODAL,
} from '@/constants';
import { PERSONALIZATION_MODAL_KEY, USER_ACTIVATION_SURVEY_MODAL, STORES } from '@/constants';
import type {
ICredentialsResponse,
IInviteResponse,