-
-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Transform trailing whitespace to recommended way (#418)
Co-authored-by: Shinigami92 <[email protected]>
- Loading branch information
1 parent
4ec814b
commit aed6523
Showing
4 changed files
with
38 additions
and
1 deletion.
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
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,13 @@ | ||
p Aliquam pulvinar enim eu enim finibus euismod. | ||
| | ||
a(href="https://example.com") Link | ||
| | ||
| Suspendisse suscipit nunc non mauris sodales elementum. | ||
|
||
div | ||
p Aliquam pulvinar enim eu enim finibus euismod. | ||
p Aliquam pulvinar enim eu enim finibus euismod. | ||
| | ||
a(href="https://example.com") Link | ||
| | ||
| Suspendisse suscipit nunc non mauris sodales elementum. |
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,9 @@ | ||
import { compareFiles } from 'tests/common'; | ||
import { describe, expect, it } from 'vitest'; | ||
|
||
describe('Issues', () => { | ||
it('should add two empty piped lines before and after link tag', () => { | ||
const { expected, actual } = compareFiles(__dirname); | ||
expect(actual).toBe(expected); | ||
}); | ||
}); |
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,9 @@ | ||
p Aliquam pulvinar enim eu enim finibus euismod. | ||
a(href="https://example.com") Link | ||
| Suspendisse suscipit nunc non mauris sodales elementum. | ||
|
||
div | ||
p Aliquam pulvinar enim eu enim finibus euismod. | ||
p Aliquam pulvinar enim eu enim finibus euismod. | ||
a(href="https://example.com") Link | ||
| Suspendisse suscipit nunc non mauris sodales elementum. |