Skip to content

Commit 33dd97e

Browse files
authored
Fix regular expression for auto indent (microsoft#144639)
Fixes microsoft#144505 Removes a `/` that was mistakenly copied over when moving these rules to json
1 parent 8908a9c commit 33dd97e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/javascript/tags-language-configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"pattern": "^>$"
134134
},
135135
"afterText": {
136-
"pattern": "/^<\\/([_:\\w][_:\\w-.\\d]*)\\s*>$",
136+
"pattern": "^<\\/([_:\\w][_:\\w-.\\d]*)\\s*>$",
137137
"flags": "i"
138138
},
139139
"action": {

0 commit comments

Comments
 (0)