File tree 4 files changed +18
-3
lines changed
4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 4
4
#![ allow(
5
5
clippy:: must_use_candidate,
6
6
clippy:: missing_panics_doc,
7
- rustc:: untranslatable_diagnostic_trivial
7
+ rustc:: diagnostic_outside_of_impl,
8
+ rustc:: untranslatable_diagnostic,
9
+ rustc:: untranslatable_diagnostic_trivial,
8
10
) ]
9
11
10
12
extern crate rustc_ast;
Original file line number Diff line number Diff line change 10
10
#![ feature( stmt_expr_attributes) ]
11
11
#![ recursion_limit = "512" ]
12
12
#![ cfg_attr( feature = "deny-warnings" , deny( warnings) ) ]
13
- #![ allow( clippy:: missing_docs_in_private_items, clippy:: must_use_candidate) ]
13
+ #![ allow(
14
+ clippy:: missing_docs_in_private_items,
15
+ clippy:: must_use_candidate,
16
+ rustc:: diagnostic_outside_of_impl,
17
+ rustc:: untranslatable_diagnostic,
18
+ ) ]
14
19
#![ warn( trivial_casts, trivial_numeric_casts) ]
15
20
// warn on lints, that are included in `rust-lang/rust`s bootstrap
16
21
#![ warn( rust_2018_idioms, unused_lifetimes) ]
Original file line number Diff line number Diff line change 8
8
#![ feature( assert_matches) ]
9
9
#![ recursion_limit = "512" ]
10
10
#![ cfg_attr( feature = "deny-warnings" , deny( warnings) ) ]
11
- #![ allow( clippy:: missing_errors_doc, clippy:: missing_panics_doc, clippy:: must_use_candidate) ]
11
+ #![ allow(
12
+ clippy:: missing_errors_doc,
13
+ clippy:: missing_panics_doc,
14
+ clippy:: must_use_candidate,
15
+ rustc:: diagnostic_outside_of_impl,
16
+ rustc:: untranslatable_diagnostic,
17
+ ) ]
12
18
// warn on the same lints as `clippy_lints`
13
19
#![ warn( trivial_casts, trivial_numeric_casts) ]
14
20
// warn on lints, that are included in `rust-lang/rust`s bootstrap
Original file line number Diff line number Diff line change
1
+ #![ allow( rustc:: diagnostic_outside_of_impl) ]
2
+ #![ allow( rustc:: untranslatable_diagnostic) ]
1
3
#![ feature( rustc_private) ]
2
4
#![ feature( let_chains) ]
3
5
#![ feature( lazy_cell) ]
You can’t perform that action at this time.
0 commit comments