I am trying to validate xml files in Sublime Text 3 (portable) using SublimeLinter3.
I have installed SublimeLinter3 as well as sublimelinter-xml packages. Both of them show up in installed packages.
I have installed xmllint and added it to my path. When I type xmllint in console is says "enter file name", so I know xmllint is installed.
When I check SublimeLinter preferences, the mode is background, meaning it should always be checking on every change.
But nothing is happening. There is not feedback in the editor at all, for any sort of xml error I can come up with. Is there some sort of way to enable it?
EDIT:
Here is what my settings look like. User settings are empty.
{
"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",
"html 5": "html",
"html (django)": "html",
"html (rails)": "html",
"javascript (babel)": "javascript",
"php": "html"
},
"warning_color": "DDB700",
"wrap_find": true
}
}