Skip to content

Commit 988f05a

Browse files
committed
UNPICK ruff
1 parent 38af2b5 commit 988f05a

File tree

1 file changed

+29
-23
lines changed

1 file changed

+29
-23
lines changed

pyproject.toml

Lines changed: 29 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -69,20 +69,20 @@ asyncio_default_fixture_loop_scope = "function"
6969

7070
# Enable docstring linting using the google style guide
7171
[tool.ruff.lint]
72-
select = ["ALL" ]
72+
select = ["ALL"]
7373
ignore = [
74-
"A001", # Allow using words like min as variable names
75-
"A002", # Allow using words like filter as variable names
76-
"ANN401", # Allow Any for wrapper classes
77-
"COM812", # Recommended to ignore these rules when using with ruff-format
78-
"FIX002", # Allow TODO lines - consider removing at some point
79-
"FBT001", # Allow boolean positional args
80-
"FBT002", # Allow boolean positional args
81-
"ISC001", # Recommended to ignore these rules when using with ruff-format
82-
"SLF001", # Allow accessing private members
74+
"A001", # Allow using words like min as variable names
75+
"A002", # Allow using words like filter as variable names
76+
"ANN401", # Allow Any for wrapper classes
77+
"COM812", # Recommended to ignore these rules when using with ruff-format
78+
"FIX002", # Allow TODO lines - consider removing at some point
79+
"FBT001", # Allow boolean positional args
80+
"FBT002", # Allow boolean positional args
81+
"ISC001", # Recommended to ignore these rules when using with ruff-format
82+
"SLF001", # Allow accessing private members
8383
"TD002",
84-
"TD003", # Allow TODO lines
85-
"UP007", # Disallowing Union is pedantic
84+
"TD003", # Allow TODO lines
85+
"UP007", # Disallowing Union is pedantic
8686
# TODO: Enable all of the following, but this PR is getting too large already
8787
"PLR0913",
8888
"TRY003",
@@ -97,7 +97,6 @@ ignore = [
9797
"DTZ007",
9898
"RUF015",
9999
"A005",
100-
"TC001",
101100
"UP035",
102101
]
103102

@@ -126,20 +125,27 @@ max-doc-length = 88
126125
]
127126
"examples/*" = ["D", "W505", "E501", "T201", "S101"]
128127
"dev/*" = ["D", "E", "T", "S", "PLR", "C", "SIM", "UP", "EXE", "N817"]
129-
"benchmarks/*" = ["D", "F", "T", "BLE", "FURB", "PLR", "E", "TD", "TRY", "S", "SIM", "EXE", "UP"]
128+
"benchmarks/*" = [
129+
"D",
130+
"F",
131+
"T",
132+
"BLE",
133+
"FURB",
134+
"PLR",
135+
"E",
136+
"TD",
137+
"TRY",
138+
"S",
139+
"SIM",
140+
"EXE",
141+
"UP",
142+
]
130143
"docs/*" = ["D"]
131144

132145
[tool.codespell]
133-
skip = [
134-
"./target",
135-
"uv.lock",
136-
"./python/tests/test_functions.py"
137-
]
146+
skip = ["./target", "uv.lock", "./python/tests/test_functions.py"]
138147
count = true
139-
ignore-words-list = [
140-
"ans",
141-
"IST"
142-
]
148+
ignore-words-list = ["ans", "IST"]
143149

144150
[dependency-groups]
145151
dev = [

0 commit comments

Comments
 (0)