refactor: Integrate consistent-type-imports in FE packages (no-changelog) (#6060)

* 👕 Move `consistent-type-imports` to top level

* 👕 Apply lintfixes

* 👕 Apply more lintfixes

* 👕 More lintfixes

* 👕 More lintfixes
This commit is contained in:
Iván Ovejero
2023-04-24 12:18:24 +02:00
committed by GitHub
parent eaf7090919
commit 57aab63c10
269 changed files with 624 additions and 569 deletions

View File

@@ -157,23 +157,22 @@
</template>
<script lang="ts">
import Vue, { PropType } from 'vue';
import {
import type { PropType } from 'vue';
import Vue from 'vue';
import type {
INodeTypeDescription,
INodeParameters,
INodeProperties,
NodeHelpers,
NodeParameterValue,
deepCopy,
} from 'n8n-workflow';
import {
ICredentialsResponse,
import { NodeHelpers, deepCopy } from 'n8n-workflow';
import type {
INodeUi,
INodeUpdatePropertiesInformation,
IUpdateInformation,
IUsedCredential,
IUser,
} from '@/Interface';
import { ICredentialsResponse, IUser } from '@/Interface';
import {
COMMUNITY_NODES_INSTALLATION_DOCS_URL,
@@ -205,7 +204,7 @@ import { useHistoryStore } from '@/stores/history';
import { RenameNodeCommand } from '@/models/history';
import useWorkflowsEEStore from '@/stores/workflows.ee';
import { useCredentialsStore } from '@/stores/credentials';
import { EventBus } from '@/event-bus';
import type { EventBus } from '@/event-bus';
export default mixins(externalHooks, nodeHelpers).extend({
name: 'NodeSettings',