diff --git a/configs/sqf.configuration.json b/configs/sqf.configuration.json index 7c3c76c..884c533 100644 --- a/configs/sqf.configuration.json +++ b/configs/sqf.configuration.json @@ -7,5 +7,20 @@ ["{", "}"], ["[", "]"], ["(", ")"] + ], + "autoClosingPairs": [ + ["{", "}"], + ["[", "]"], + ["(", ")"], + {"open": "\"", "close": "\"", "notIn": ["string", "comment"]}, + {"open": "'", "close": "'", "notIn": ["string", "comment"]}, + {"open": "/**", "close": " */", "notIn": ["string"]} + ], + "surroundingPairs": [ + ["(", ")"], + ["[", "]"], + ["`", "`"], + ["\"", "\""], + ["'", "'"] ] -} \ No newline at end of file +}