Skip to content

Commit

Permalink
ci(lint): auto-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 22, 2025
1 parent b41801b commit 95c26c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/component-meta/tests/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ const worker = (checker: ComponentMetaChecker, withTsconfig: boolean) => describ
const text = meta.props.find(prop => prop.name === 'text');

expect(text?.default).toEqual('"foobar"');
})
});

test('reference-type-props-js', () => {
const componentPath = path.resolve(__dirname, '../../../test-workspace/component-meta/reference-type-props/component-js.vue');
Expand Down
2 changes: 1 addition & 1 deletion packages/language-core/lib/codegen/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function collectVars(
export function collectIdentifiers(
ts: typeof import('typescript'),
node: ts.Node,
results: Array<{ id: ts.Identifier, isRest: boolean, initializer: ts.Expression | undefined }> = [],
results: Array<{ id: ts.Identifier, isRest: boolean, initializer: ts.Expression | undefined; }> = [],
isRest = false,
initializer: ts.Expression | undefined = undefined
) {
Expand Down

0 comments on commit 95c26c3

Please sign in to comment.