Skip to content

Commit 95c26c3

Browse files
ci(lint): auto-fix
1 parent b41801b commit 95c26c3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/component-meta/tests/index.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ const worker = (checker: ComponentMetaChecker, withTsconfig: boolean) => describ
374374
const text = meta.props.find(prop => prop.name === 'text');
375375

376376
expect(text?.default).toEqual('"foobar"');
377-
})
377+
});
378378

379379
test('reference-type-props-js', () => {
380380
const componentPath = path.resolve(__dirname, '../../../test-workspace/component-meta/reference-type-props/component-js.vue');

packages/language-core/lib/codegen/utils/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export function collectVars(
4141
export function collectIdentifiers(
4242
ts: typeof import('typescript'),
4343
node: ts.Node,
44-
results: Array<{ id: ts.Identifier, isRest: boolean, initializer: ts.Expression | undefined }> = [],
44+
results: Array<{ id: ts.Identifier, isRest: boolean, initializer: ts.Expression | undefined; }> = [],
4545
isRest = false,
4646
initializer: ts.Expression | undefined = undefined
4747
) {

0 commit comments

Comments
 (0)