Skip to content

Commit 86a83a9

Browse files
lib.rs: Order lints alphabetically
So that lints can be searched for easily. Signed-off-by: Tomás González <tomasagustin.gonzalezorlando@arm.com>
1 parent 0f50b3b commit 86a83a9

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/lib.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,29 +5,29 @@
55
//! with the Parsec service.
66
77
#![deny(
8-
nonstandard_style,
98
dead_code,
109
improper_ctypes,
11-
non_shorthand_field_patterns,
10+
missing_debug_implementations,
11+
missing_docs,
1212
no_mangle_generic_items,
13+
non_shorthand_field_patterns,
14+
nonstandard_style,
1315
overflowing_literals,
1416
path_statements,
1517
patterns_in_fns_without_body,
1618
private_in_public,
19+
trivial_casts,
20+
trivial_numeric_casts,
1721
unconditional_recursion,
1822
unused,
1923
unused_allocation,
2024
unused_comparisons,
21-
unused_parens,
22-
while_true,
23-
missing_debug_implementations,
24-
missing_docs,
25-
trivial_casts,
26-
trivial_numeric_casts,
2725
unused_extern_crates,
2826
unused_import_braces,
27+
unused_parens,
2928
unused_qualifications,
30-
unused_results
29+
unused_results,
30+
while_true
3131
)]
3232
// This one is hard to avoid.
3333
#![allow(clippy::multiple_crate_versions)]

0 commit comments

Comments
 (0)