Skip to content

Commit b83d243

Browse files
committed
Ignore large_digit_groups pedantic clippy lint in test
warning: digit groups should be smaller --> tests/test.rs:962:9 | 962 | 51.24817837550540_4, // 51.2481783755054_1 | ^^^^^^^^^^^^^^^^^^^ help: consider: `51.248_178_375_505_404` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups = note: `-W clippy::large-digit-groups` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::large_digit_groups)]` warning: digit groups should be smaller --> tests/test.rs:963:10 | 963 | -93.3113703768803_3, // -93.3113703768803_2 | ^^^^^^^^^^^^^^^^^^ help: consider: `93.311_370_376_880_33` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups warning: digit groups should be smaller --> tests/test.rs:964:10 | 964 | -36.5739948427534_36, // -36.5739948427534_4 | ^^^^^^^^^^^^^^^^^^^ help: consider: `36.573_994_842_753_436` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups warning: digit groups should be smaller --> tests/test.rs:965:9 | 965 | 52.31400820410624_4, // 52.31400820410624_ | ^^^^^^^^^^^^^^^^^^^ help: consider: `52.314_008_204_106_244` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups warning: digit groups should be smaller --> tests/test.rs:966:9 | 966 | 97.4536532003468_5, // 97.4536532003468_4 | ^^^^^^^^^^^^^^^^^^ help: consider: `97.453_653_200_346_85` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#large_digit_groups
1 parent 18e9b89 commit b83d243

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tests/test.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
clippy::float_cmp,
88
clippy::incompatible_msrv, // https://github.com/rust-lang/rust-clippy/issues/12257
99
clippy::items_after_statements,
10+
clippy::large_digit_groups,
1011
clippy::let_underscore_untyped,
1112
clippy::shadow_unrelated,
1213
clippy::too_many_lines,

0 commit comments

Comments
 (0)