mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
rust/pv: Lower most lints to warn
Lower the lint level to warn for the styling lints. This avoids compile issues during packaging for newer tooling with potential more lint findings. Still deny compiling if a public symbol has no documentation. Fixes: https://github.com/ibm-s390-linux/s390-tools/issues/173 Reviewed-by: Jan Höppner <hoeppner@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
This commit is contained in:
@@ -2,8 +2,8 @@
|
||||
//
|
||||
// Copyright IBM Corp. 2023, 2024
|
||||
|
||||
#![deny(
|
||||
missing_docs,
|
||||
#![deny(missing_docs)]
|
||||
#![warn(
|
||||
missing_debug_implementations,
|
||||
trivial_numeric_casts,
|
||||
unstable_features,
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
//
|
||||
// Copyright IBM Corp. 2023, 2024
|
||||
#![deny(
|
||||
missing_docs,
|
||||
#![deny(missing_docs)]
|
||||
#![warn(
|
||||
missing_debug_implementations,
|
||||
trivial_numeric_casts,
|
||||
unstable_features,
|
||||
|
||||
Reference in New Issue
Block a user