Implement ambiguous_negative_literals
lint
This commit is contained in:
parent
0c81f94b9a
commit
de560c3065
6 changed files with 321 additions and 0 deletions
|
@ -72,6 +72,7 @@ mod noop_method_call;
|
|||
mod opaque_hidden_inferred_bound;
|
||||
mod pass_by_value;
|
||||
mod passes;
|
||||
mod precedence;
|
||||
mod ptr_nulls;
|
||||
mod redundant_semicolon;
|
||||
mod reference_casting;
|
||||
|
@ -109,6 +110,7 @@ use nonstandard_style::*;
|
|||
use noop_method_call::*;
|
||||
use opaque_hidden_inferred_bound::*;
|
||||
use pass_by_value::*;
|
||||
use precedence::*;
|
||||
use ptr_nulls::*;
|
||||
use redundant_semicolon::*;
|
||||
use reference_casting::*;
|
||||
|
@ -173,6 +175,7 @@ early_lint_methods!(
|
|||
RedundantSemicolons: RedundantSemicolons,
|
||||
UnusedDocComment: UnusedDocComment,
|
||||
Expr2024: Expr2024,
|
||||
Precedence: Precedence,
|
||||
]
|
||||
]
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue