Skip to content
Merged
Show file tree
Hide file tree
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
34 changes: 17 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ optional-dependencies.dev = [
"prek==0.3.0",
"pydocstringformatter==0.7.5",
"pylint[spelling]==4.0.4",
"pyproject-fmt==2.11.1",
"pyproject-fmt==2.12.1",
"pyrefly==0.51.0",
"pyright==1.1.408",
"pyroma==5.0.1",
Expand Down Expand Up @@ -94,16 +94,16 @@ scripts.vws = "vws_cli:vws_group"
[tool.setuptools]
zip-safe = false

[tool.setuptools.packages.find]
where = [
"src",
]

[tool.setuptools.package-data]
vws_cli = [
"py.typed",
]

[tool.setuptools.packages.find]
where = [
"src",
]

[tool.setuptools_scm]
# We write the version to a file so that we can import it.
# We choose a ``.py`` file so that we can read it without
Expand Down Expand Up @@ -160,6 +160,12 @@ lint.pydocstyle.convention = "google"

[tool.pylint]

[tool.pylint.'FORMAT']

# Allow the body of an if to be on the same line as the test if there is no
# else.
single-line-if-stmt = false

[tool.pylint.'MASTER']

# Pickle collected data for later comparisons.
Expand Down Expand Up @@ -250,12 +256,6 @@ disable = [
'wrong-import-order',
]

[tool.pylint.'FORMAT']

# Allow the body of an if to be on the same line as the test if there is no
# else.
single-line-if-stmt = false

[tool.pylint.'SPELLING']

# Spelling dictionary name. Available dictionaries: none. To make it working
Expand Down Expand Up @@ -318,18 +318,18 @@ max_supported_python = "3.14"
xfail_strict = true
log_cli = true

[tool.coverage.report]
exclude_also = [
"if TYPE_CHECKING:",
]

[tool.coverage.run]

branch = true
omit = [
'src/vws_cli/_setuptools_scm_version.py',
]

[tool.coverage.report]
exclude_also = [
"if TYPE_CHECKING:",
]

[tool.mypy]

strict = true
Expand Down
Loading