Skip to content

Commit 91695c0

Browse files
committed
remove E501 from ruff ignore
1 parent 26ecfe7 commit 91695c0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ruff.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,19 +57,19 @@ select = [
5757
"I", # isort
5858
"UP", # pyupgrade
5959
]
60-
ignore = [
61-
"E501"
62-
]
60+
ignore = []
6361

6462
# Allow autofix for all enabled rules (when `--fix`) is provided.
6563
fixable = ["ALL"]
6664
unfixable = []
6765

68-
per-file-ignores = {}
69-
7066
# Allow unused variables when underscore-prefixed.
7167
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
7268

69+
[lint.per-file-ignores]
70+
"tests/integration/test_inspect_table.py" = ["E501"]
71+
"tests/io/test_pyarrow.py" = ["E501"]
72+
7373
[lint.pyupgrade]
7474
# Preserve types, even if a file imports `from __future__ import annotations`.
7575
keep-runtime-typing = true

0 commit comments

Comments
 (0)