8000 [autofix.ci] apply automated fixes · vuejs/devtools@4c5b5cd · GitHub
[go: up one dir, main page]

Skip to content

Commit 4c5b5cd

Browse files
[autofix.ci] apply automated fixes
1 parent fb36cae commit 4c5b5cd

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

packages/devtools-kit/global.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { DevToolsHook, RouterInfo } from './src/types'
22

3-
/* eslint-disable vars-on-top, no-var */
3+
/* eslint-disable vars-on-top */
44
declare global {
55
var __VUE_DEVTOOLS_GLOBAL_HOOK__: DevToolsHook
66
var __VUE_DEVTOOLS_NEXT_APP_RECORD_INFO__: {

packages/devtools-kit/src/types/tab.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import type { VNode } from 'vue'
22

3-
type TabCategory =
4-
| 'pinned'
5-
| 'app'
6-
| 'modules'
7-
| 'advanced'
3+
type TabCategory
4+
= | 'pinned'
5+
| 'app'
6+
| 'modules'
7+
| 'advanced'
88

99
export type ModuleView = ModuleIframeView | ModuleVNodeView | ModuleSFCView
1010

packages/playground/basic/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
66
import { defineConfig } from 'vite'
77
import inspect from 'vite-plugin-inspect'
88
import VueDevTools from 'vite-plugin-vue-devtools'
9+
910
// https://vitejs.dev/config/
1011
export default defineConfig({
1112
css: {

packages/playground/plugin-sfc/vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import vue from '@vitejs/plugin-vue'
22
import { defineConfig } from 'vite'
33
import inspect from 'vite-plugin-inspect'
44
import VueDevTools from 'vite-plugin-vue-devtools'
5+
56
// https://vitejs.dev/config/
67
export default defineConfig({
78
plugins: [

packages/ui/src/composables/notification.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import Notification from '../components/Notification.vue'
33

44
// @unocss-include
55

6-
export type VueNotificationPlacement =
7-
| 'top-left' | 'top-center' | 'top-right'
8-
| 'bottom-left' | 'bottom-center' | 'bottom-right'
6+
export type VueNotificationPlacement
7+
= | 'top-left' | 'top-center' | 'top-right'
8+
| 'bottom-left' | 'bottom-center' | 'bottom-right'
99

1010
export interface VueNotificationOptions {
1111
message: string

0 commit comments

Comments
 (0)
0