We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5821d10 commit 0b6c5e8Copy full SHA for 0b6c5e8
ruff.toml
@@ -25,6 +25,7 @@ extend-select = [
25
"PIE",
26
"TID",
27
"FLY",
28
+ "PD",
29
"E",
30
"W",
31
"PGH",
@@ -34,6 +35,7 @@ extend-select = [
34
35
ignore = [
36
"C408", # Unnecessary `dict()` call (rewrite as a literal)
37
"PIE790", # Unnecessary `pass` statement
38
+ "PD901", # Avoid using the generic variable name `df` for DataFrames
39
"E241", # Multiple spaces after comma
40
"E265", # Block comment should start with `# `
41
"E266", # Too many leading `#` before block comment
0 commit comments