mirror of https://github.com/astral-sh/ruff
Remove example from `tab-indentation` (#11462)
## Summary I think the example is more confusing than helpful, since there's no visual difference between the tab and space here (even if it rendered properly). Closes https://github.com/astral-sh/ruff/issues/11460#issuecomment-2118397278.
This commit is contained in:
parent
83152fff92
commit
24899efe50
|
|
@ -11,18 +11,6 @@ use ruff_text_size::{TextRange, TextSize};
|
||||||
/// According to [PEP 8], spaces are preferred over tabs (unless used to remain
|
/// According to [PEP 8], spaces are preferred over tabs (unless used to remain
|
||||||
/// consistent with code that is already indented with tabs).
|
/// consistent with code that is already indented with tabs).
|
||||||
///
|
///
|
||||||
/// ## Example
|
|
||||||
/// ```python
|
|
||||||
/// if True:
|
|
||||||
/// a = 1
|
|
||||||
/// ```
|
|
||||||
///
|
|
||||||
/// Use instead:
|
|
||||||
/// ```python
|
|
||||||
/// if True:
|
|
||||||
/// a = 1
|
|
||||||
/// ```
|
|
||||||
///
|
|
||||||
/// ## Formatter compatibility
|
/// ## Formatter compatibility
|
||||||
/// We recommend against using this rule alongside the [formatter]. The
|
/// We recommend against using this rule alongside the [formatter]. The
|
||||||
/// formatter enforces consistent indentation, making the rule redundant.
|
/// formatter enforces consistent indentation, making the rule redundant.
|
||||||
|
|
|
||||||
|
|
@ -74,7 +74,6 @@ KNOWN_FORMATTING_VIOLATIONS = [
|
||||||
"redundant-backslash",
|
"redundant-backslash",
|
||||||
"shebang-leading-whitespace",
|
"shebang-leading-whitespace",
|
||||||
"surrounding-whitespace",
|
"surrounding-whitespace",
|
||||||
"tab-indentation",
|
|
||||||
"too-few-spaces-before-inline-comment",
|
"too-few-spaces-before-inline-comment",
|
||||||
"too-many-blank-lines",
|
"too-many-blank-lines",
|
||||||
"too-many-boolean-expressions",
|
"too-many-boolean-expressions",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue