Skip to content

Commit 03a7140

Browse files
committed
fix: lint
1 parent 11c857a commit 03a7140

File tree

8 files changed

+17
-12
lines changed

8 files changed

+17
-12
lines changed

eslint.config.js

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
import { sxzz } from '@sxzz/eslint-config'
22

3-
export default sxzz({
4-
rules: {
5-
'unicorn/filename-case': 'off',
6-
'import/no-default-export': 'off',
7-
'unused-imports/no-unused-vars': 'warn',
8-
'unicorn/no-new-array': 'off',
3+
export default sxzz([
4+
{
5+
rules: {
6+
'unicorn/filename-case': 'off',
7+
'import/no-default-export': 'off',
8+
'unused-imports/no-unused-vars': 'warn',
9+
'unicorn/no-new-array': 'off',
10+
},
911
},
10-
})
12+
{
13+
ignores: ['**/patched'],
14+
},
15+
])

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packageManager": "pnpm@10.2.1",
2+
"packageManager": "pnpm@10.4.1",
33
"description": "Vue JSX Vapor",
44
"type": "module",
55
"keywords": [

packages/babel/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vue-jsx-vapor/babel",
33
"version": "0.0.5",
4-
"packageManager": "pnpm@10.2.1",
4+
"packageManager": "pnpm@10.4.1",
55
"description": "Vue JSX Vapor Babel Plugin",
66
"type": "module",
77
"keywords": [

packages/compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@vue-jsx-vapor/compiler",
33
"version": "0.1.6",
4-
"packageManager": "pnpm@10.2.1",
4+
"packageManager": "pnpm@10.4.1",
55
"description": "Vue JSX Vapor Compiler",
66
"type": "module",
77
"keywords": [

packages/compiler/src/compile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { parse } from '@babel/parser'
33
import {
44
type VaporCodegenResult as BaseVaporCodegenResult,
55
generate,
6-
} from './patched/compiler-vapor.js'
6+
} from '../patched/compiler-vapor.js'
77
import {
88
type DirectiveTransform,
99
type NodeTransform,

packages/unplugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "unplugin-vue-jsx-vapor",
33
"version": "1.3.5",
4-
"packageManager": "pnpm@10.2.1",
4+
"packageManager": "pnpm@10.4.1",
55
"description": "Convert Vue JSX to Vapor",
66
"type": "module",
77
"keywords": [

0 commit comments

Comments
 (0)