Skip to content

Commit 67b9c8f

Browse files
committed
chore: fix lint
1 parent 11fd47b commit 67b9c8f

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

eslint.config.mjs eslint.config.js

File renamed without changes.

src/core/options.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import process from 'node:process'
22
import { getPackageInfo } from 'local-pkg'
3-
import type { VueJSXPluginOptions } from '@vue/babel-plugin-jsx'
43
import type { FilterPattern } from '@rollup/pluginutils'
4+
import type { VueJSXPluginOptions } from '@vue/babel-plugin-jsx'
55

66
export type Vue2JSXOptions = {
77
functional?: boolean

src/core/vue2.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type TransformOptions, transform } from '@babel/core'
1+
import { transform, type TransformOptions } from '@babel/core'
22
// @ts-expect-error
33
import TS from '@babel/plugin-syntax-typescript'
44
// @ts-expect-error

src/core/vue3.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import { type TransformOptions, transform } from '@babel/core'
2-
import vue3Jsx from '@vue/babel-plugin-jsx'
1+
import { transform, type TransformOptions } from '@babel/core'
32
// @ts-expect-error
43
import TS from '@babel/plugin-syntax-typescript'
4+
import vue3Jsx from '@vue/babel-plugin-jsx'
55
import { isTS } from './utils'
66
import type { OptionsResolved } from './options'
77

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import { type UnpluginOptions, createUnplugin } from 'unplugin'
21
import { createFilter } from '@rollup/pluginutils'
2+
import { createUnplugin, type UnpluginOptions } from 'unplugin'
33
import {
4+
resolveOption,
45
type Options,
56
type OptionsResolved,
6-
resolveOption,
77
} from './core/options'
88

99
export default createUnplugin<Options | undefined>((userOptions = {}) => {

tests/vue2.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, expect, test } from 'vitest'
2-
import { type Options, resolveOption } from '../src/core/options'
2+
import { resolveOption, type Options } from '../src/core/options'
33
import { transformVue2 } from '../src/core/vue2'
44

55
const transform = async (code: string, userOptions: Options = {}) => {

tests/vue3.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe, expect, test } from 'vitest'
2-
import { type Options, resolveOption } from '../src/core/options'
2+
import { resolveOption, type Options } from '../src/core/options'
33
import { transformVue3 } from '../src/core/vue3'
44

55
const transform = async (

0 commit comments

Comments
 (0)