mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 12:19:20 +00:00
Fix JS snippets trailing commas. (#104153)
Fix JS snippets trailing commas, introduced by #100657 and observed by #104141.
This commit is contained in:
@@ -180,14 +180,14 @@
|
|||||||
"Log warning to console": {
|
"Log warning to console": {
|
||||||
"prefix": "warn",
|
"prefix": "warn",
|
||||||
"body": [
|
"body": [
|
||||||
"console.warn($1);",
|
"console.warn($1);"
|
||||||
],
|
],
|
||||||
"description": "Log warning to the console"
|
"description": "Log warning to the console"
|
||||||
},
|
},
|
||||||
"Log error to console": {
|
"Log error to console": {
|
||||||
"prefix": "error",
|
"prefix": "error",
|
||||||
"body": [
|
"body": [
|
||||||
"console.error($1);",
|
"console.error($1);"
|
||||||
],
|
],
|
||||||
"description": "Log error to the console"
|
"description": "Log error to the console"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user