File tree Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Expand file tree Collapse file tree 3 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 17
17
18
18
//! Test starlark-rust embedding.
19
19
20
+ #![ allow( clippy:: significant_drop_in_scrutinee) ] // FIXME?
21
+
20
22
use std:: cell:: RefCell ;
21
23
use std:: sync:: Arc ;
22
24
use std:: sync:: Mutex ;
Original file line number Diff line number Diff line change 17
17
18
18
//! Types supporting documentation for code written in or for Starlark.
19
19
20
+ #![ allow( clippy:: derive_partial_eq_without_eq) ] // FIXME?
21
+ #![ allow( clippy:: format_push_string) ] // FIXME?
22
+
20
23
// TODO(nga): document it
21
24
#![ allow( missing_docs) ]
22
25
Original file line number Diff line number Diff line change 17
17
18
18
//! The list type, an immutable sequence of values.
19
19
20
+ #![ allow( clippy:: extra_unused_lifetimes) ] // FIXME?
21
+
20
22
use std:: cmp:: Ordering ;
21
23
use std:: fmt;
22
24
use std:: fmt:: Debug ;
You can’t perform that action at this time.
0 commit comments