Skip to content

Commit 3fa88d5

Browse files
updated ruff config
1 parent a04a214 commit 3fa88d5

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.ruff_cache
2+
.python-version
23
# Created by https://www.toptal.com/developers/gitignore/api/macos,python,node
34
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,python,node
45

pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ ruff = "^0.9.0"
3232
tox = "^4.0.8"
3333

3434
[tool.ruff]
35-
ignore = ["B009", "B010"]
3635
line-length = 99 # Ensure same line-length as for Black, above.
36+
37+
[tool.ruff.lint]
38+
ignore = ["B009", "B010"]
3739
select = ["E", "F", "I", "S", "T20", "PL", "B"]

0 commit comments

Comments
 (0)