Fix whitespace ✔

This commit is contained in:
Laurenz 2021-03-04 13:55:21 +01:00
parent 5157c1e276
commit a0de9aad07

View File

@ -1,29 +1,29 @@
{ {
"comments": { "comments": {
"lineComment": "//", "lineComment": "//",
"blockComment": ["/*", "*/"] "blockComment": ["/*", "*/"]
}, },
"brackets": [ "brackets": [
["[", "]"], ["[", "]"],
["{", "}"], ["{", "}"],
["(", ")"] ["(", ")"]
], ],
"autoClosingPairs": [ "autoClosingPairs": [
{ "open": "[", "close": "]" }, { "open": "[", "close": "]" },
{ "open": "{", "close": "}" }, { "open": "{", "close": "}" },
{ "open": "(", "close": ")" }, { "open": "(", "close": ")" },
{ "open": "\"", "close": "\"", "notIn": ["string"] }, { "open": "\"", "close": "\"", "notIn": ["string"] },
{ "open": "$", "close": "$", "notIn": ["string"] } { "open": "$", "close": "$", "notIn": ["string"] }
], ],
"autoCloseBefore": "$ \n\t", "autoCloseBefore": "$ \n\t",
"surroundingPairs": [ "surroundingPairs": [
["[", "]"], ["[", "]"],
["{", "}"], ["{", "}"],
["(", ")"], ["(", ")"],
["\"", "\""], ["\"", "\""],
["*", "*"], ["*", "*"],
["_", "_"], ["_", "_"],
["`", "`"], ["`", "`"],
["$", "$"] ["$", "$"]
] ]
} }