Skip to content

Commit 13e024d

Browse files
committed
clippy: increase allowable error and enum size
Since the changeset grew in size, the old values were insufficient. The recommended solution long-term is to place the affected types behind a Box pointer.
1 parent cbaeecf commit 13e024d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# TODO fix, see: https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant
2-
enum-variant-size-threshold = 1032
2+
enum-variant-size-threshold = 1064
33
# TODO fix, see: https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err
4-
large-error-threshold = 993
4+
large-error-threshold = 1024

0 commit comments

Comments
 (0)