-
-
Notifications
You must be signed in to change notification settings - Fork 255
New issue
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
conflict with vue/html-self-closing #85
Comments
Hi!
Line 5 in a2fceb9
Could you make a reproduction repo, where I can run |
Hmmm, i cant reproduce it now... My only guess that there was some weird caching issue.. |
I have the same issue. Every https://gist.github.com/cmygray/f968f44c28832c1513679c688bd2fef0 |
@cmygray Prettier formats all void elements with a slash ( |
It will lead to problem with for example img tags
Thats how prettier wants it
<img src="~assets/img/lemken_icon.png" alt="L" />
Thats how vue eslint wants it
<img src="~assets/img/lemken_icon.png" alt="L">
eslint-config-prettier-check also dont report this rule as a problem
related prettier issue prettier/prettier#5246
The text was updated successfully, but these errors were encountered: