mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-17 01:55:10 +00:00
Use #[expect(lint)]
over #[allow(lint)]
where possible (#17822)
This commit is contained in:
parent
8535af8516
commit
fa628018b2
148 changed files with 221 additions and 268 deletions
|
@ -210,7 +210,7 @@ pub(crate) struct TokenSourceCheckpoint {
|
|||
/// of `contents`.
|
||||
///
|
||||
/// See [#9546](https://github.com/astral-sh/ruff/pull/9546) for a more detailed explanation.
|
||||
#[allow(dead_code)]
|
||||
#[expect(dead_code)]
|
||||
fn allocate_tokens_vec(contents: &str) -> Vec<Token> {
|
||||
let lower_bound = contents.len().saturating_mul(15) / 100;
|
||||
Vec::with_capacity(lower_bound)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue