You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can define e.g. #[allow(clippy::annoying_lint)] at the top of lib.rs and main.rs instead of specifying them inline in .travis.yml. This would make it easier for newcomers to the project to not need to know we have a special clippy command. This has been allowed for a few rust versions now (it used to break compiling if you weren't running clippy--now it's ignored if you don't have clippy and works fine). This would also remove the need for #1406.
The text was updated successfully, but these errors were encountered:
We can define e.g.
#[allow(clippy::annoying_lint)]
at the top oflib.rs
andmain.rs
instead of specifying them inline in .travis.yml. This would make it easier for newcomers to the project to not need to know we have a special clippy command. This has been allowed for a few rust versions now (it used to break compiling if you weren't running clippy--now it's ignored if you don't have clippy and works fine). This would also remove the need for #1406.The text was updated successfully, but these errors were encountered: