Skip to content

Commit

Permalink
Merge pull request #294 from KisaragiEffective/chore/enable-clippy-on…
Browse files Browse the repository at this point in the history
…-all-sub-crates
  • Loading branch information
KisaragiEffective authored Oct 19, 2023
2 parents c3a4501 + e453529 commit 577f05e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions package/origlang-compiler-scanner-example/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#![deny(clippy::all)]
#![warn(clippy::pedantic, clippy::nursery)]

#[cfg(test)]
mod tests {
use std::cell::Cell;
Expand Down
3 changes: 3 additions & 0 deletions package/origlang-typesystem-model/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#![deny(clippy::all)]
#![warn(clippy::pedantic, clippy::nursery)]

use std::fmt::{Display, Formatter};
use derive_more::Display;
use origlang_ast::after_parse::BinaryOperatorKind;
Expand Down

0 comments on commit 577f05e

Please sign in to comment.