pre-commit-sort 1.0.0

Sort pre-commit files
Documentation
1
2
3
4
5
6
7
8
9
10
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error("IO Error: {0}")]
    IO(#[from] std::io::Error),

    #[error("serde yaml error: {0}")]
    SerdeYaml(#[from] yaml_serde::Error),
}

pub type Result<T> = core::result::Result<T, Error>;