mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-09 07:06:47 +00:00
feat: 打开clippy的stack overflow静态检查
*限制栈大小最大为4096字节 *限制栈中的数组最大为1024字节
This commit is contained in:
parent
6242ecb2bd
commit
2a867f467e
@ -1,2 +1,4 @@
|
|||||||
# 这是clippy的配置文件,详情请见:
|
# 这是clippy的配置文件,详情请见:
|
||||||
# https://doc.rust-lang.org/clippy/lint_configuration.html
|
# https://doc.rust-lang.org/clippy/lint_configuration.html
|
||||||
|
stack-size-threshold = 4096
|
||||||
|
array-size-threshold = 1024
|
@ -26,6 +26,8 @@
|
|||||||
#![allow(static_mut_refs, non_local_definitions, internal_features)]
|
#![allow(static_mut_refs, non_local_definitions, internal_features)]
|
||||||
// clippy的配置
|
// clippy的配置
|
||||||
#![deny(clippy::all)]
|
#![deny(clippy::all)]
|
||||||
|
#![deny(clippy::large_stack_frames)]
|
||||||
|
#![deny(clippy::large_const_arrays)]
|
||||||
// DragonOS允许在函数中使用return语句(尤其是长函数时,我们推荐这么做)
|
// DragonOS允许在函数中使用return语句(尤其是长函数时,我们推荐这么做)
|
||||||
#![allow(
|
#![allow(
|
||||||
clippy::macro_metavars_in_unsafe,
|
clippy::macro_metavars_in_unsafe,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user