# -------- https://rust-coding-guidelines.github.io/rust-coding-guidelines-zh/ --------
# -------- https://rust-lang.github.io/rust-clippy/master/index.html --------
# This lint will not trigger if the function is an exported API. This avoids suggesting changes that would break the API. Default is true
= true
# [RECOMMENDED] G.VAR.01 Avoid using too many meaningless variable names when destructuring tuples with more than four variables
= 4
# [RECOMMENDED] G.TYP.SCT.02 Consider refactoring when a struct contains more than three boolean fields
= 3
# [RECOMMENDED] G.FUD.03 Configures the maximum number of boolean parameters allowed in a function, which is 3 by default.
= 3
# [RECOMMENDED] G.TYP.ENM.06 Variants within an enum should not differ significantly in size. Default is 200 bytes
= 200
# [REQUIRED] G.FUD.01 Limit the number of function parameters to no more than five
= 5
# Determines if wildcard imports in prelude and super (in test modules) should be warned. Default is false
= false