-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[
refurb
] implement repeated_global (FURB154) lint
- Loading branch information
Showing
8 changed files
with
488 additions
and
1 deletion.
There are no files selected for viewing
86 changes: 86 additions & 0 deletions
86
crates/ruff_linter/resources/test/fixtures/refurb/FURB154.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# Errors | ||
|
||
def f1(): | ||
global x | ||
global y | ||
|
||
|
||
def f3(): | ||
global x | ||
global y | ||
global z | ||
|
||
|
||
def f4(): | ||
global x | ||
global y | ||
pass | ||
global x | ||
global y | ||
|
||
|
||
def f2(): | ||
x = y = z = 1 | ||
|
||
def inner(): | ||
nonlocal x | ||
nonlocal y | ||
|
||
def inner2(): | ||
nonlocal x | ||
nonlocal y | ||
nonlocal z | ||
|
||
def inner3(): | ||
nonlocal x | ||
nonlocal y | ||
pass | ||
nonlocal x | ||
nonlocal y | ||
|
||
|
||
def f5(): | ||
w = x = y = z = 1 | ||
|
||
def inner(): | ||
global w | ||
global x | ||
nonlocal y | ||
nonlocal z | ||
|
||
def inner2(): | ||
global x | ||
nonlocal y | ||
nonlocal z | ||
|
||
|
||
def f6(): | ||
global x, y, z | ||
global a, b, c | ||
global d, e, f | ||
|
||
|
||
# Ok | ||
|
||
def fx(): | ||
x = y = 1 | ||
|
||
def inner(): | ||
global x | ||
nonlocal y | ||
|
||
def inner2(): | ||
nonlocal x | ||
pass | ||
nonlocal y | ||
|
||
|
||
def fy(): | ||
global x | ||
pass | ||
global y | ||
|
||
|
||
def fz(): | ||
pass | ||
global x |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
117 changes: 117 additions & 0 deletions
117
crates/ruff_linter/src/rules/refurb/rules/repeated_global.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
use itertools::Itertools; | ||
|
||
use ruff_diagnostics::{AlwaysFixableViolation, Diagnostic, Edit, Fix}; | ||
use ruff_macros::{derive_message_formats, violation}; | ||
use ruff_python_ast::Stmt; | ||
use ruff_text_size::Ranged; | ||
|
||
use crate::checkers::ast::Checker; | ||
|
||
/// ## What it does | ||
/// Checks for consecutive `global` (`nonlocal`) statements. | ||
/// | ||
/// ## Why is this bad? | ||
/// The `global` and `nonlocal` keywords can take multiple comma-separated names, removing the need | ||
/// for multiple lines. | ||
/// | ||
/// ## Example | ||
/// ```python | ||
/// def some_func(): | ||
/// global x | ||
/// global y | ||
/// | ||
/// print(x, y) | ||
/// ``` | ||
/// | ||
/// Use instead: | ||
/// ```python | ||
/// def some_func(): | ||
/// global x, y | ||
/// | ||
/// print(x, y) | ||
/// ``` | ||
/// | ||
/// ## References | ||
/// - [Python documentation: the `global` statement](https://docs.python.org/3/reference/simple_stmts.html#the-global-statement) | ||
/// - [Python documentation: the `nonlocal` statement](https://docs.python.org/3/reference/simple_stmts.html#the-nonlocal-statement) | ||
#[violation] | ||
pub struct RepeatedGlobal { | ||
global_kind: GlobalKind, | ||
} | ||
|
||
impl AlwaysFixableViolation for RepeatedGlobal { | ||
#[derive_message_formats] | ||
fn message(&self) -> String { | ||
format!("Use of repeated consecutive `{}`", self.global_kind) | ||
} | ||
|
||
fn fix_title(&self) -> String { | ||
format!("Merge to one `{}`", self.global_kind) | ||
} | ||
} | ||
|
||
#[derive(Debug, PartialEq, Eq, Clone, Copy)] | ||
enum GlobalKind { | ||
Global, | ||
NonLocal, | ||
} | ||
|
||
impl std::fmt::Display for GlobalKind { | ||
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { | ||
match self { | ||
GlobalKind::Global => write!(f, "global"), | ||
GlobalKind::NonLocal => write!(f, "nonlocal"), | ||
} | ||
} | ||
} | ||
|
||
fn get_global_kind(stmt: &Stmt) -> Option<GlobalKind> { | ||
match stmt { | ||
Stmt::Global(_) => Some(GlobalKind::Global), | ||
Stmt::Nonlocal(_) => Some(GlobalKind::NonLocal), | ||
_ => None, | ||
} | ||
} | ||
|
||
/// FURB154 | ||
pub(crate) fn repeated_global(checker: &mut Checker, mut suite: &[Stmt]) { | ||
while let Some(idx) = suite | ||
.iter() | ||
.position(|stmt| get_global_kind(stmt).is_some()) | ||
{ | ||
let global_kind = get_global_kind(&suite[idx]).unwrap(); | ||
|
||
suite = &suite[idx..]; | ||
let (globals_sequence, next_suite) = suite.split_at( | ||
suite | ||
.iter() | ||
.position(|stmt| get_global_kind(stmt) != Some(global_kind)) | ||
.unwrap_or(suite.len()), | ||
); | ||
suite = next_suite; | ||
|
||
// if there are at least 2 consecutive `global` (`nonlocal`) statements | ||
if let [first, .., last] = globals_sequence { | ||
let range = first.range().cover(last.range()); | ||
checker.diagnostics.push( | ||
Diagnostic::new(RepeatedGlobal { global_kind }, range).with_fix(Fix::safe_edit( | ||
Edit::range_replacement( | ||
format!( | ||
"{global_kind} {}", | ||
globals_sequence | ||
.iter() | ||
.flat_map(|stmt| match stmt { | ||
Stmt::Global(stmt) => &stmt.names, | ||
Stmt::Nonlocal(stmt) => &stmt.names, | ||
_ => unreachable!(), | ||
}) | ||
.map(|identifier| &identifier.id) | ||
.format(", ") | ||
), | ||
range, | ||
), | ||
)), | ||
); | ||
} | ||
} | ||
} |
Oops, something went wrong.