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 Aug 2, 2024
1 parent 5af4320 commit 67be01c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/language-plugin-pug/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ const plugin: VueLanguagePlugin = ({ modules }) => {
const value = Reflect.get(target, prop, receiver);
if (typeof value === 'object' && value !== null) {
let proxyed = proxys.get(value)
if (proxyed)
if (proxyed) {
return proxyed;
}
proxyed = createProxyObject(value);
proxys.set(value, proxyed);
return proxyed;
Expand Down

0 comments on commit 67be01c

Please sign in to comment.