From 9ccf49010cc030e8c03dfa494eb0c3254b0524c4 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Wed, 17 Jun 2020 05:48:01 -0400 Subject: [PATCH] resolve clippy lints --- src/parse/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/parse/mod.rs b/src/parse/mod.rs index 4119782..fbfd008 100644 --- a/src/parse/mod.rs +++ b/src/parse/mod.rs @@ -1147,14 +1147,17 @@ impl<'a> Parser<'a> { Ok(stmts) } + #[allow(clippy::unused_self)] fn parse_extend(&mut self) -> SassResult<()> { todo!("@extend not yet implemented") } + #[allow(clippy::unused_self)] fn parse_supports(&mut self) -> SassResult { todo!("@supports not yet implemented") } + #[allow(clippy::unused_self)] fn parse_keyframes(&mut self) -> SassResult { todo!("@keyframes not yet implemented") }