We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
htmlhint
Describe the bug htmlhint lints all files, not just HTML files.
To Reproduce Steps to reproduce the behavior:
doctype-first
tag-pair
Expected behavior A clear and concise description of what you expected to happen.
Screenshots htmlhint lints only HTML.
Desktop (please complete the following information):
I don’t think this is OS-dependent, however, below is my platform:
SublimeLinter-contrib-htmlhint
The text was updated successfully, but these errors were encountered:
I was able to work around this by adding the following int SublimeLinter settings (see the docs:
"htmlhint": { "selector": "source.html" }
However, I still think that that should the default setting.
Sorry, something went wrong.
Thanks for the suggestion, In my case, source.html disabled my linter. Html files report a different source in SublimeText so I modified it to:
"htmlhint": { "selector": "text.html.basic" }
and made a pull request to update the default settings.
No branches or pull requests
Describe the bug
htmlhint
lints all files, not just HTML files.To Reproduce
Steps to reproduce the behavior:
doctype-first
andtag-pair
errors.Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
htmlhint
lints only HTML.Desktop (please complete the following information):
I don’t think this is OS-dependent, however, below is my platform:
SublimeLinter-contrib-htmlhint
v2.0.1The text was updated successfully, but these errors were encountered: