Skip to content

Commit 6d3f3d3

Browse files
fix: allow parameter names only made of "_"s
1 parent 36a5b3a commit 6d3f3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/typescript.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export const settings: Linter.Config = {
7474
{
7575
selector: "variableLike",
7676
filter: {
77-
regex: "_",
77+
regex: "_[^_]+",
7878
match: true,
7979
},
8080
format: ["camelCase", "PascalCase"],

0 commit comments

Comments
 (0)