notabene 0.2.0

A fast linter for changelogs in Keep a Changelog format
Documentation
1
2
3
4
5
6
7
8
9
use std::path::Path;

use crate::span::Locator;

pub struct Context<'a> {
    pub source: &'a str,
    pub path: Option<&'a Path>,
    pub locator: &'a Locator<'a>,
}