Auto merge of #16820 - lnicola:no-string-comment-autoclose, r=lnicola

fix: Don't auto-close block comments in strings

Fixes #16815
This commit is contained in:
bors 2024-03-12 12:46:17 +00:00
commit 9bc1eb49b5

View file

@ -18,7 +18,7 @@
{ "open": "[", "close": "]" },
{ "open": "(", "close": ")" },
{ "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "/*", "close": " */" },
{ "open": "/*", "close": " */", "notIn": ["string"] },
{ "open": "`", "close": "`", "notIn": ["string"] }
],
"autoCloseBefore": ";:.,=}])> \n\t",