Make sure your sublime-settings
files follow this format:
{
"key_1": "value",
"key_2": true,
"array":
[
"array_value_1",
"array_value_2",
],
"key_3": 1234,
}
- All settings are enclosed within a pair of braces ( @ first & last lines )
Each setting should have:
[1] a setting key enclosed in quotes ( all lowercase )
[2] a colon between the setting key & value
[3] a string value enclosed in quotes OR a numeric value OR a lowercase boolean value
[4] a comma
Arrays follow a similar structure:
-
[1] & [2], followed by a line break
- an opening bracket, followed by a line break
- all values of the array, conforming to [3] & [4] ( separated by line breaks )
- a closing bracket followed by a comma
Note: commas are not technically required on [A] the last setting of the sublime-settings file & [B] the last setting of each array. However, they will not cause an issue if present.