aboutsummaryrefslogtreecommitdiff
path: root/bin/src/err.rs
diff options
context:
space:
mode:
Diffstat (limited to 'bin/src/err.rs')
-rw-r--r--bin/src/err.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/src/err.rs b/bin/src/err.rs
index c9db4d5..727e0cc 100644
--- a/bin/src/err.rs
+++ b/bin/src/err.rs
@@ -23,6 +23,8 @@ pub enum LintErr {
23pub enum FixErr { 23pub enum FixErr {
24 #[error("[{0}] syntax error: {1}")] 24 #[error("[{0}] syntax error: {1}")]
25 Parse(PathBuf, ParseError), 25 Parse(PathBuf, ParseError),
26 #[error("path error: {0}")]
27 InvalidPath(#[from] io::Error),
26} 28}
27 29
28#[derive(Error, Debug)] 30#[derive(Error, Debug)]