ci(editor): Enfore stricter linting rules from eslint-plugin-vue (no-changelog) (#6242)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-05-19 13:31:16 +00:00
committed by GitHub
parent 8a8fed0840
commit 4b5cbe7750
56 changed files with 239 additions and 178 deletions

View File

@@ -164,7 +164,7 @@ import { mapStores } from 'pinia';
import { useUsersStore } from '@/stores/users.store';
import { useSettingsStore } from '@/stores/settings.store';
import { useUIStore } from '@/stores';
import { createEventBus } from '@/event-bus';
import { createEventBus } from 'n8n-design-system';
import type { N8nFormInputs } from 'n8n-design-system';
type N8nFormInputsRef = InstanceType<typeof N8nFormInputs>;

View File

@@ -91,15 +91,13 @@ import { useUIStore } from '../stores/ui.store';
import { LOG_STREAM_MODAL_KEY, EnterpriseEditionFeature } from '../constants';
import type { MessageEventBusDestinationOptions } from 'n8n-workflow';
import { deepCopy, defaultMessageEventBusDestinationOptions } from 'n8n-workflow';
import PageViewLayout from '@/components/layouts/PageViewLayout.vue';
import EventDestinationCard from '@/components/SettingsLogStreaming/EventDestinationCard.ee.vue';
import { createEventBus } from '@/event-bus';
import { createEventBus } from 'n8n-design-system';
export default defineComponent({
name: 'SettingsLogStreamingView',
props: {},
components: {
PageViewLayout,
EventDestinationCard,
},
data() {

View File

@@ -66,7 +66,7 @@ import { useUsersStore } from '@/stores/users.store';
import { useSettingsStore } from '@/stores/settings.store';
import { mapStores } from 'pinia';
import { defineComponent } from 'vue';
import { createEventBus } from '@/event-bus';
import { createEventBus } from 'n8n-design-system';
export default defineComponent({
name: 'SettingsPersonalView',

View File

@@ -63,7 +63,6 @@ import { defineComponent } from 'vue';
import { mapStores } from 'pinia';
import { EnterpriseEditionFeature, INVITE_USER_MODAL_KEY, VIEWS } from '@/constants';
import PageAlert from '@/components/PageAlert.vue';
import type { IUser, IUserListAction } from '@/Interface';
import { useToast } from '@/composables';
import { copyPaste } from '@/mixins/copyPaste';
@@ -76,9 +75,6 @@ import { useSSOStore } from '@/stores/sso.store';
export default defineComponent({
name: 'SettingsUsersView',
mixins: [copyPaste],
components: {
PageAlert,
},
setup() {
return {
...useToast(),