Skip to content

Commit 950f255

Browse files
committed
chore(release): 0.19.6
1 parent a4bfe2b commit 950f255

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "dprint-plugin-typescript"
33
description = "TypeScript code formatting plugin for Dprint."
44
keywords = ["formatting", "formatter", "typescript"]
5-
version = "0.19.5"
5+
version = "0.19.6"
66
authors = ["David Sherret <[email protected]>"]
77
edition = "2018"
88
license = "MIT"

tests/specs/declarations/class/ClassDeclaration_Body.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,13 @@ class Test {}
2929

3030
[expect]
3131
class Test {}
32+
33+
== should remove empty semi-colons ==
34+
class Test {
35+
;
36+
;
37+
}
38+
39+
[expect]
40+
class Test {
41+
}

0 commit comments

Comments
 (0)