Skip to content

Commit 6a075c6

Browse files
committed
chore: lint fix
1 parent 44b6815 commit 6a075c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/language-core/lib/utils/parseCssVars.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export function* parseCssVars(css: string) {
1717

1818
export function fillBlank(css: string, ...regs: RegExp[]) {
1919
for (const reg of regs) {
20-
css = css.replace(reg, (match) => ' '.repeat(match.length));
20+
css = css.replace(reg, match => ' '.repeat(match.length));
2121
}
2222
return css;
2323
}

0 commit comments

Comments
 (0)