Skip to content

Commit 4a24743

Browse files
committed
Remove E722 from [lint.per-file-ignores] in ruff.toml
1 parent b2a912a commit 4a24743

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

ruff.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,16 @@ exclude = ["**/_version.py"]
5050
"setup.py" = ["F401"]
5151

5252
"cuda_bindings/examples/**" = [
53-
"E722",
5453
"E501", # line too long
5554
]
5655

5756
"cuda_bindings/tests/**" = [
58-
"E722",
5957
"UP022",
6058
"E402", # module level import not at top of file
6159
"F841",
6260
] # F841 complains about unused variables, but some assignments have side-effects that could be useful for tests (func calls for example)
6361

6462
"cuda_bindings/benchmarks/**" = [
65-
"E722",
6663
"UP022",
6764
"E402", # module level import not at top of file
6865
"F841",

0 commit comments

Comments
 (0)