ci: Enforce no unused imports (no-changelog) (#6073)
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user