Skip to content

Commit 95685a6

Browse files
authored
fix(pnpm): add ignore for @types/vscode in json-enforce-catalog (#794)
1 parent 6b4255b commit 95685a6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/configs/pnpm.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,10 @@ export async function pnpm(
5757
? {
5858
'pnpm/json-enforce-catalog': [
5959
'error',
60-
{ autofix: !isInEditor },
60+
{
61+
autofix: !isInEditor,
62+
ignores: ['@types/vscode'],
63+
},
6164
],
6265
}
6366
: {}),

0 commit comments

Comments
 (0)