Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,18 @@ optional-dependencies.dev = [
"pygments==2.19.2",
"pylint[spelling]==4.0.4",
"pylint-per-file-ignores==3.2.0",
"pyproject-fmt==2.14.0",
"pyproject-fmt==2.14.2",
"pyrefly==0.51.1",
"pyright==1.1.408",
"pyroma==5.0.1",
"pytest==9.0.2",
"pytest-cov==7.0.0",
"pyyaml==6.0.3",
"ruff==0.15.0",
# We add shellcheck-py not only for shell scripts and shell code blocks,
# but also because having it installed means that ``actionlint-py`` will
# use it to lint shell commands in GitHub workflow files.
"shellcheck-py==0.11.0.1",
"shfmt-py==3.12.0.2",
"sphinx==9.1.0",
"sphinx-copybutton==0.5.2",
Expand All @@ -75,10 +79,6 @@ optional-dependencies.dev = [
"vulture==2.14",
"vws-python-mock==2025.3.10.1",
"vws-test-fixtures==2023.3.5",
# We add shellcheck-py not only for shell scripts and shell code blocks,
# but also because having it installed means that ``actionlint-py`` will
# use it to lint shell commands in GitHub workflow files.
"shellcheck-py==0.11.0.1",
"yamlfix==1.19.1",
"zizmor==1.22.0",
]
Expand Down Expand Up @@ -112,17 +112,17 @@ lint.select = [
"ALL",
]
lint.ignore = [
# Ruff warns that this conflicts with the formatter.
"COM812",
# Allow our chosen docstring line-style - pydocstringformatter handles formatting
# but doesn't enforce D205 (blank line after summary) or D212 (summary on first line).
"D205",
"D212",
# Ruff warns that this conflicts with the formatter.
"ISC001",
# Ignore 'too-many-*' errors as they seem to get in the way more than
# helping.
"PLR0913",
# Ruff warns that this conflicts with the formatter.
"COM812",
# Ruff warns that this conflicts with the formatter.
"ISC001",
"D212",
]
lint.per-file-ignores."doccmd_*.py" = [
# Allow asserts in docs.
Expand Down