When I open sublime text 3, I keep getting the following error message.
Error trying to parse settings: Unexpected character, expected a comma or closing bracket in Packages/User/SublimeLinter.sublime-settings:76:37
However, my SublimeLinter.sublime-settings currently have the following lines,
{
"default": {
"debug": false,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "background",
"mark_style": "outline",
"no_column_highlights_line": false,
"passive_warnings": false,
"paths": {
"linux": [],
"osx": [],
"windows": []
},
"python_paths": {
"linux": [],
"osx": [],
"windows": []
},
"rc_search_limit": 3,
"shell_timeout": 10,
"show_errors_on_save": false,
"show_marks_in_minimap": true,
"syntax_map": {
"python django": "python",
"pythonimproved": "python",
"html 5": "html",
"html (django)": "html",
"html (rails)": "html",
"javascript (babel)": "javascript",
"php": "html"
},
"pep8_ignore":
[
"E501",
"W239"
],
"warning_color": "DDB700",
"wrap_find": true
}
}
and this only contains 43 lines, is there any line that I have to consider to fix this error?