Skip to content

Commit ab5c0f5

Browse files
committed
chore: fix lint
1 parent 9c9bf35 commit ab5c0f5

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ export default <Comp foo={foo} />
4343
const Comp = defineComponent(({ foo }) => {
4444
return <>{foo}</>
4545
})
46-
4746
// Will be convert to:
4847
const Comp = defineComponent((_props) => {
4948
return <>{_props.foo}</>

playground/src/count.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import { defineComponent } from 'vue'
2-
31
export default {
42
props: {
53
value: String,

pnpm-workspace.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
catalog:
2-
"@vue/compiler-core": "https://pkg.pr.new/vuejs/core-vapor/@vue/compiler-core@2eae25e"
3-
"@vue/compiler-dom": "https://pkg.pr.new/vuejs/core-vapor/@vue/compiler-dom@2eae25e"
4-
"@vue/compiler-vapor": "https://pkg.pr.new/vuejs/core-vapor/@vue/compiler-vapor@2eae25e"
5-
"@vue/runtime-vapor": "https://pkg.pr.new/vuejs/core-vapor/@vue/runtime-vapor@2eae25e"
6-
"@vue/shared": "https://pkg.pr.new/vuejs/core-vapor/@vue/shared@2eae25e"
7-
"vue": "https://pkg.pr.new/vuejs/core-vapor/vue@2eae25e"
2+
'@vue/compiler-core': 'https://pkg.pr.new/vuejs/core-vapor/@vue/compiler-core@2eae25e'
3+
'@vue/compiler-dom': 'https://pkg.pr.new/vuejs/core-vapor/@vue/compiler-dom@2eae25e'
4+
'@vue/compiler-vapor': 'https://pkg.pr.new/vuejs/core-vapor/@vue/compiler-vapor@2eae25e'
5+
'@vue/runtime-vapor': 'https://pkg.pr.new/vuejs/core-vapor/@vue/runtime-vapor@2eae25e'
6+
'@vue/shared': 'https://pkg.pr.new/vuejs/core-vapor/@vue/shared@2eae25e'
7+
vue: 'https://pkg.pr.new/vuejs/core-vapor/vue@2eae25e'
88
packages:
99
- .
1010
- playground

src/core/utils.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import { isMapCallExpression } from './compiler/utils'
22
import type {
3-
ArrowFunctionExpression,
43
ConditionalExpression,
5-
FunctionDeclaration,
6-
FunctionExpression,
74
JSXElement,
85
JSXFragment,
96
LogicalExpression,

0 commit comments

Comments
 (0)