Skip to content

Commit 92f15cb

Browse files
committed
chore: make sure local ruff runs don't touch vendored
Signed-off-by: Henry Schreiner <henryschreineriii@gmail.com>
1 parent 1e00742 commit 92f15cb

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,9 @@ omit = ["*/vendored/*"]
9191
[tool.coverage.report]
9292
show_missing = true
9393

94-
[tool.ruff.lint]
95-
extend-select = [
94+
[tool.ruff]
95+
extend-exclude = ["src/wheel/vendored"]
96+
lint.extend-select = [
9697
"B", # flake8-bugbear
9798
"G", # flake8-logging-format
9899
"I", # isort
@@ -103,6 +104,7 @@ extend-select = [
103104
"W", # pycodestyle warnings
104105
]
105106

107+
106108
# Tox (https://tox.wiki/) is a tool for running tests in multiple virtualenvs.
107109
# This configuration file will run the test suite on all supported python
108110
# versions. To use it, "pipx install tox" and then run "tox" from this

0 commit comments

Comments
 (0)