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

@@ -78,9 +78,8 @@
</template>
<script setup lang="ts">
import { reactive, toRefs, getCurrentInstance, computed, onUnmounted, ref } from 'vue';
import { reactive, toRefs, getCurrentInstance, computed, onUnmounted } from 'vue';
import type { INodeTypeDescription, INodeActionTypeDescription } from 'n8n-workflow';
import { INodeTypeNameVersion } from 'n8n-workflow';
import type {
INodeCreateElement,
NodeCreateElement,
@@ -97,7 +96,6 @@ import {
STICKY_NODE_TYPE,
REGULAR_NODE_FILTER,
TRIGGER_NODE_FILTER,
N8N_NODE_TYPE,
} from '@/constants';
import CategorizedItems from './CategorizedItems.vue';
import { useNodeCreatorStore } from '@/stores/nodeCreator';