use comrak::nodes::AstNode;
use mdbook_lint_core::error::Result;
use mdbook_lint_core::rule::{Rule, RuleMetadata};
use mdbook_lint_core::{Document, violation::Violation};
pub struct MD008;
impl Rule for MD008 {
fn id(&self) -> &'static str {
"MD008"
}
fn name(&self) -> &'static str {
"reserved"
}
fn description(&self) -> &'static str {
"Reserved rule number (never implemented)"
}
fn metadata(&self) -> RuleMetadata {
RuleMetadata::reserved("This rule number was never implemented in markdownlint")
.introduced_in("mdbook-lint v0.1.0")
}
fn check_with_ast<'a>(
&self,
_document: &Document,
_ast: Option<&'a AstNode<'a>>,
) -> Result<Vec<Violation>> {
Ok(vec![])
}
}