Skip to content

Commit

Permalink
fix(build): wrong lint kind
Browse files Browse the repository at this point in the history
  • Loading branch information
Myriad-Dreamin committed Dec 28, 2023
1 parent cb855d7 commit 11cd1af
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@ opt-level = 3 # Optimize for speed
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic

[workspace.lints.rust]
missing_docs = "warn"

[workspace.lints.clippy]
uninlined_format_args = "warn"
missing_docs = "warn"
missing_errors_doc = "warn"
missing_panics_doc = "warn"
missing_safety_doc = "warn"
undocumented_unsafe_blocks = "warn"
missing_crate_level_docs = "warn"

0 comments on commit 11cd1af

Please sign in to comment.