Skip to content

Commit 6eda68d

Browse files
committed
style(lint): adjust ruff configuration
- Replace PLR0913 with PLC0415 in ignored rules - Remove unused import aliases for asyncio.subprocess, boltons, and ubelt to simplify configuration
1 parent 902ac38 commit 6eda68d

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

template/.config/linters/.ruff.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ignore = [
3030
"ERA001",
3131
"FIX002",
3232
"INP001",
33-
"PLR0913",
33+
"PLC0415",
3434
"PLR2004",
3535
"RET504",
3636
"S101",
@@ -51,8 +51,6 @@ select = ["ALL"]
5151
allow-star-arg-any = true
5252

5353
[lint.flake8-import-conventions.aliases]
54-
"asyncio.subprocess" = "asp"
55-
"boltons" = "bt"
5654
"jax.numpy" = "jnp"
5755
"jax.typing" = "jxt"
5856
"matplotlib" = "mpl"
@@ -66,7 +64,6 @@ allow-star-arg-any = true
6664
"seaborn" = "sns"
6765
"taichi" = "ti"
6866
"trimesh" = "tm"
69-
"ubelt" = "ub"
7067

7168
[lint.pydocstyle]
7269
convention = "google"

0 commit comments

Comments
 (0)