Fixes #13295: Remove brackets with problems

This commit is contained in:
Alex Dima 2016-10-27 21:40:46 +02:00
parent 15d1cfd71b
commit c525146876
3 changed files with 5 additions and 11 deletions

View file

@ -6,8 +6,7 @@
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"]
["(", ")"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}", "notIn": ["string", "comment"] },
@ -21,7 +20,6 @@
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["<", ">"]
["'", "'"]
]
}

View file

@ -6,8 +6,7 @@
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"]
["(", ")"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}", "notIn": ["string", "comment"] },
@ -21,7 +20,6 @@
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"],
["<", ">"]
["'", "'"]
]
}

View file

@ -6,8 +6,7 @@
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"]
["(", ")"]
],
"autoClosingPairs": [
{ "open": "{", "close": "}" },
@ -22,7 +21,6 @@
["{", "}"],
["[", "]"],
["(", ")"],
["<", ">"],
["'", "'"],
["\"", "\""],
["`", "`"]