resolve clippy lints

This commit is contained in:
ConnorSkees 2020-06-17 05:48:01 -04:00
parent 191f2dfba4
commit 9ccf49010c

View File

@ -1147,14 +1147,17 @@ impl<'a> Parser<'a> {
Ok(stmts) Ok(stmts)
} }
#[allow(clippy::unused_self)]
fn parse_extend(&mut self) -> SassResult<()> { fn parse_extend(&mut self) -> SassResult<()> {
todo!("@extend not yet implemented") todo!("@extend not yet implemented")
} }
#[allow(clippy::unused_self)]
fn parse_supports(&mut self) -> SassResult<Stmt> { fn parse_supports(&mut self) -> SassResult<Stmt> {
todo!("@supports not yet implemented") todo!("@supports not yet implemented")
} }
#[allow(clippy::unused_self)]
fn parse_keyframes(&mut self) -> SassResult<Stmt> { fn parse_keyframes(&mut self) -> SassResult<Stmt> {
todo!("@keyframes not yet implemented") todo!("@keyframes not yet implemented")
} }