Skip to content

Commit

Permalink
Mostly enable pedantic clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
swsnr committed Jan 10, 2025
1 parent c53544a commit f9c6a2b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#![deny(warnings, clippy::all,
#![deny(warnings, clippy::all, clippy::pedantic,
// Do cfg(test) right
clippy::cfg_not_test,
clippy::tests_outside_test_module,
Expand Down Expand Up @@ -39,6 +39,7 @@
clippy::pathbuf_init_then_push,
clippy::unreachable,
)]
#![allow(clippy::enum_glob_use, clippy::module_name_repetitions)]

use adw::prelude::*;
use app::TurnOnApplication;
Expand Down

0 comments on commit f9c6a2b

Please sign in to comment.