Skip to content

Commit

Permalink
Merge pull request #67 from glotzerlab/cleanup
Browse files Browse the repository at this point in the history
Misc code cleanup
  • Loading branch information
joaander authored Dec 6, 2024
2 parents 5eec351 + b5e33d8 commit 7340a30
Show file tree
Hide file tree
Showing 20 changed files with 574 additions and 568 deletions.
9 changes: 9 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,12 @@ assert_cmd = "2.0.15"
assert_fs = "1.1.2"
predicates = { version = "3.1.2", features = ["regex"] }
serial_test = "3.2.0"

[lints.clippy]
pedantic = { level = "warn", priority = -1 }
cast_precision_loss = "allow"
cast_possible_wrap = "allow"
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
must_use_candidate = "allow"
format_push_string = "warn"
1 change: 0 additions & 1 deletion src/builtin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ pub(crate) trait BuiltIn {

impl BuiltIn for launcher::Configuration {
/// Construct the built-in launchers
///
fn built_in() -> Self {
let mut result = Self {
launchers: HashMap::with_capacity(2),
Expand Down
Loading

0 comments on commit 7340a30

Please sign in to comment.