forked from sveltejs/prettier-plugin-svelte
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make it possible to have script/style without newline
If the content of a script/style tag is completely empty (no whitespace), don't add a hardline anymore. Fixes sveltejs#87
- Loading branch information
Simon Holthausen
committed
Jan 4, 2021
1 parent
16169cd
commit 35ee647
Showing
3 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
test/formatting/samples/scripts-styles-empty-handling/input.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<script context="module"></script> | ||
|
||
<script> </script> | ||
|
||
<style> | ||
|
||
</style> |
7 changes: 7 additions & 0 deletions
7
test/formatting/samples/scripts-styles-empty-handling/output.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<script context="module"></script> | ||
|
||
<script> | ||
</script> | ||
|
||
<style> | ||
</style> |