//! HTML conformance lint rules.
//!
//! These rules check whether HTML in Vue templates conforms to
//! the WHATWG HTML Living Standard. Based on markuplint.
pub use DeprecatedAttr;
pub use DeprecatedElement;
pub use IdDuplication;
pub use NoConsecutiveBr;
pub use NoDuplicateDt;
pub use NoEmptyPalpableContent;
pub use RequireDatetime;