-
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.
- Loading branch information
Showing
8 changed files
with
138 additions
and
0 deletions.
There are no files selected for viewing
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,13 @@ | ||
# PIE808 | ||
range(0, 10) | ||
|
||
# OK | ||
range(x, 10) | ||
range(-15, 10) | ||
range(10) | ||
range(0) | ||
range(0, 10, x) | ||
range(0, 10, 1) | ||
range(0, 10, step=1) | ||
range(start=0, stop=10) | ||
range(0, stop=10) |
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
95 changes: 95 additions & 0 deletions
95
crates/ruff/src/rules/flake8_pie/rules/unnecessary_range_start.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,95 @@ | ||
use num_bigint::BigInt; | ||
|
||
use ruff_diagnostics::Diagnostic; | ||
use ruff_diagnostics::{AlwaysAutofixableViolation, Fix}; | ||
use ruff_macros::{derive_message_formats, violation}; | ||
use ruff_python_ast::{self as ast, Constant, Expr, Ranged}; | ||
|
||
use crate::autofix::edits::{remove_argument, Parentheses}; | ||
use crate::checkers::ast::Checker; | ||
use crate::registry::AsRule; | ||
|
||
/// ## What it does | ||
/// Checks for `range` calls with an unnecessary `start` argument. | ||
/// | ||
/// ## Why is this bad? | ||
/// `range(0, x)` is equivalent to `range(x)`, as `0` is the default value for | ||
/// the `start` argument. Omitting the `start` argument makes the code more | ||
/// concise and idiomatic. | ||
/// | ||
/// ## Example | ||
/// ```python | ||
/// range(0, 3) | ||
/// ``` | ||
/// | ||
/// Use instead: | ||
/// ```python | ||
/// range(3) | ||
/// ``` | ||
/// | ||
/// ## References | ||
/// - [Python documentation: `range`](https://docs.python.org/3/library/stdtypes.html#range) | ||
#[violation] | ||
pub struct UnnecessaryRangeStart; | ||
|
||
impl AlwaysAutofixableViolation for UnnecessaryRangeStart { | ||
#[derive_message_formats] | ||
fn message(&self) -> String { | ||
format!("Unnecessary `start` argument in `range`") | ||
} | ||
|
||
fn autofix_title(&self) -> String { | ||
format!("Remove `start` argument") | ||
} | ||
} | ||
|
||
/// PIE808 | ||
pub(crate) fn unnecessary_range_start(checker: &mut Checker, call: &ast::ExprCall) { | ||
// Verify that the call is to the `range` builtin. | ||
let Expr::Name(ast::ExprName { id, .. }) = call.func.as_ref() else { | ||
return; | ||
}; | ||
if id != "range" { | ||
return; | ||
}; | ||
if !checker.semantic().is_builtin("range") { | ||
return; | ||
}; | ||
|
||
// `range` doesn't accept keyword arguments. | ||
if !call.arguments.keywords.is_empty() { | ||
return; | ||
} | ||
|
||
// Verify that the call has exactly two arguments (no `step`). | ||
let [start, _] = call.arguments.args.as_slice() else { | ||
return; | ||
}; | ||
|
||
// Verify that the `start` argument is the literal `0`. | ||
let Expr::Constant(ast::ExprConstant { | ||
value: Constant::Int(value), | ||
.. | ||
}) = start | ||
else { | ||
return; | ||
}; | ||
if *value != BigInt::from(0) { | ||
return; | ||
}; | ||
|
||
let mut diagnostic = Diagnostic::new(UnnecessaryRangeStart, start.range()); | ||
if checker.patch(diagnostic.kind.rule()) { | ||
diagnostic.try_set_fix(|| { | ||
remove_argument( | ||
&start, | ||
&call.arguments, | ||
Parentheses::Preserve, | ||
checker.locator(), | ||
checker.source_type, | ||
) | ||
.map(Fix::automatic) | ||
}); | ||
} | ||
checker.diagnostics.push(diagnostic); | ||
} |
22 changes: 22 additions & 0 deletions
22
...ruff/src/rules/flake8_pie/snapshots/ruff__rules__flake8_pie__tests__PIE808_PIE808.py.snap
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,22 @@ | ||
--- | ||
source: crates/ruff/src/rules/flake8_pie/mod.rs | ||
--- | ||
PIE808.py:2:7: PIE808 [*] Unnecessary `start` argument in `range` | ||
| | ||
1 | # PIE808 | ||
2 | range(0, 10) | ||
| ^ PIE808 | ||
3 | | ||
4 | # OK | ||
| | ||
= help: Remove `start` argument | ||
|
||
ℹ Fix | ||
1 1 | # PIE808 | ||
2 |-range(0, 10) | ||
2 |+range(10) | ||
3 3 | | ||
4 4 | # OK | ||
5 5 | range(x, 10) | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.