Skip to content

Commit e18b79f

Browse files
committed
code clean
1 parent 1c5e2eb commit e18b79f

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

crates/inky-cli/src/build.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ use std::sync::LazyLock;
44
use colored::Colorize;
55
use regex::Regex;
66

7-
static RE_COMMENT: LazyLock<Regex> =
8-
LazyLock::new(|| Regex::new(r"(?s)<!--.*?-->").unwrap());
7+
static RE_COMMENT: LazyLock<Regex> = LazyLock::new(|| Regex::new(r"(?s)<!--.*?-->").unwrap());
98
static RE_TABLE_TAGS: LazyLock<Regex> =
109
LazyLock::new(|| Regex::new(r"(?i)(</?(table|tbody|tr|td|th)[\s>])").unwrap());
1110
static RE_CLOSING_TAGS: LazyLock<Regex> =

0 commit comments

Comments
 (0)