Skip to content

Commit ccff876

Browse files
committed
fix unused imports
1 parent 5ae894b commit ccff876

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

htmlsnob_rules/src/attributes/attribute_value_quote_style.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use htmlsnob::ast::{Attribute, Either};
1+
use htmlsnob::ast::Attribute;
22
use htmlsnob::dynamic_format::dynamic_format;
33
use htmlsnob::rule_trait::RuleTrait;
44
use htmlsnob::warning::Warning;

htmlsnob_rules/src/class_and_id/id_unique.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use htmlsnob::ast::{Attribute, AttributeValue, Either, OpenTag, StringArea};
1+
use htmlsnob::ast::{Attribute, AttributeValue, Either, OpenTag};
22
use htmlsnob::dynamic_format::dynamic_format;
33
use htmlsnob::parser::ParseState;
44
use htmlsnob::rule_trait::RuleTrait;

htmlsnob_rules/src/content/text_disallowed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use htmlsnob::ast::{Position, Area, CloseTag, Node, OpenTag, Text};
1+
use htmlsnob::ast::{Position, Area, Text};
22
use htmlsnob::dynamic_format::dynamic_format;
33
use htmlsnob::parser::ParseState;
44
use htmlsnob::rule_trait::RuleTrait;

htmlsnob_rules/src/tags/missing_close_tag_disallowed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use htmlsnob::ast::{Area, CloseTag, Comment, Doctype, OpenTag, TemplateExpression};
1+
use htmlsnob::ast::{CloseTag, OpenTag};
22
use htmlsnob::dynamic_format::dynamic_format;
33
use htmlsnob::parser::ParseState;
44
use htmlsnob::rule_trait::RuleTrait;

htmlsnob_rules/src/tags/missing_open_tag_disallowed.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use htmlsnob::ast::{Area, CloseTag, Comment, Doctype, OpenTag, TemplateExpression};
1+
use htmlsnob::ast::CloseTag;
22
use htmlsnob::dynamic_format::dynamic_format;
33
use htmlsnob::parser::ParseState;
44
use htmlsnob::rule_trait::RuleTrait;

0 commit comments

Comments
 (0)