{
	"comments": {
		"blockComment": ["<!--", "-->"]
	},
	"brackets": [
		["<!--", "-->"],
		["<", ">"],
		["{", "}"],
		["(", ")"],
		["[", "]"]
	],
	"autoClosingPairs": [
		{ "open": "{", "close": "}" },
		{ "open": "[", "close": "]" },
		{ "open": "(", "close": ")" },
		{ "open": "'", "close": "'" },
		{ "open": "\"", "close": "\"" },
		{ "open": "<!--", "close": "-->", "notIn": ["comment", "string"] },
		{ "open": "/**", "close": "*/", "notIn": ["string"] }
	],
	"surroundingPairs": [
		{ "open": "'", "close": "'" },
		{ "open": "\"", "close": "\"" },
		{ "open": "`", "close": "`" },
		{ "open": "{", "close": "}" },
		{ "open": "[", "close": "]" },
		{ "open": "(", "close": ")" },
		{ "open": "<", "close": ">" }
	],
	"folding": {
		"markers": {
			"start": "^\\s*//\\s*#?region\\b|^<(template|style|script)[^>]*>",
			"end": "^\\s*//\\s*#?endregion\\b|^</(template|style|script)>"
		}
	}
}
