We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26ecfe7 commit 91695c0Copy full SHA for 91695c0
ruff.toml
@@ -57,19 +57,19 @@ select = [
57
"I", # isort
58
"UP", # pyupgrade
59
]
60
-ignore = [
61
- "E501"
62
-]
+ignore = []
63
64
# Allow autofix for all enabled rules (when `--fix`) is provided.
65
fixable = ["ALL"]
66
unfixable = []
67
68
-per-file-ignores = {}
69
-
70
# Allow unused variables when underscore-prefixed.
71
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
72
+[lint.per-file-ignores]
+"tests/integration/test_inspect_table.py" = ["E501"]
+"tests/io/test_pyarrow.py" = ["E501"]
+
73
[lint.pyupgrade]
74
# Preserve types, even if a file imports `from __future__ import annotations`.
75
keep-runtime-typing = true
0 commit comments