File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 318
318
#![ doc( html_root_url = "https://docs.rs/serde_json/1.0.23" ) ]
319
319
#![ cfg_attr( feature = "cargo-clippy" , deny( clippy, clippy_pedantic) ) ]
320
320
// Whitelisted clippy lints
321
- #![ cfg_attr( feature = "cargo-clippy" , allow( doc_markdown, needless_pass_by_value) ) ]
321
+ #![ cfg_attr(
322
+ feature = "cargo-clippy" ,
323
+ allow( doc_markdown, needless_pass_by_value)
324
+ ) ]
322
325
// Whitelisted clippy_pedantic lints
323
326
#![ cfg_attr( feature = "cargo-clippy" , allow(
324
327
// Deserializer::from_str, into_iter
Original file line number Diff line number Diff line change 7
7
// except according to those terms.
8
8
9
9
#![ cfg( not( feature = "preserve_order" ) ) ]
10
- #![ cfg_attr( feature = "cargo-clippy" , allow( float_cmp, unreadable_literal) ) ]
10
+ #![ cfg_attr(
11
+ feature = "cargo-clippy" ,
12
+ allow( float_cmp, unreadable_literal)
13
+ ) ]
11
14
#![ cfg_attr( feature = "trace-macros" , feature( trace_macros) ) ]
12
15
#[ cfg( feature = "trace-macros" ) ]
13
16
trace_macros ! ( true ) ;
You can’t perform that action at this time.
0 commit comments