Skip to content

Commit

Permalink
style: pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Nov 6, 2023
1 parent e8fbfdb commit 5f0103c
Showing 1 changed file with 49 additions and 49 deletions.
98 changes: 49 additions & 49 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,55 +122,6 @@ isort.required-imports = ["from __future__ import annotations"]
"src/vector/backends/_numba_object.py" = ["PGH003"]
"tests/backends/test_operators.py" = ["SIM201", "SIM202"]

[tool.pytest.ini_options]
minversion = "6.0"
xfail_strict = true
addopts = [
"-ra",
"--strict-markers",
"--strict-config",
]
testpaths = [
"tests",
]
markers = [
"slow",
"numba",
"awkward",
"dis",
]
log_cli_level = "DEBUG"
filterwarnings = [
"error",
"ignore::DeprecationWarning",
"ignore::UserWarning",
]

[tool.mypy]
files = [
"src/vector",
]
python_version = "3.8"
strict = true
warn_return_any = false
show_error_codes = true
enable_error_code = [
"ignore-without-code",
"truthy-bool",
"redundant-expr",
]
warn_unreachable = false

[[tool.mypy.overrides]]
module = [
"vector._compute.*.*",
"numba.*",
"awkward.*",
]
ignore_missing_imports = true
disallow_untyped_defs = false
disallow_untyped_calls = false

[tool.pylint]
master.py-version = "3.8"
reports.output-format = "colorized"
Expand Down Expand Up @@ -229,3 +180,52 @@ messages_control.disable = [
"no-else-raise",
"unidiomatic-typecheck",
]

[tool.pytest.ini_options]
minversion = "6.0"
xfail_strict = true
addopts = [
"-ra",
"--strict-markers",
"--strict-config",
]
testpaths = [
"tests",
]
markers = [
"slow",
"numba",
"awkward",
"dis",
]
log_cli_level = "DEBUG"
filterwarnings = [
"error",
"ignore::DeprecationWarning",
"ignore::UserWarning",
]

[tool.mypy]
files = [
"src/vector",
]
python_version = "3.8"
strict = true
warn_return_any = false
show_error_codes = true
enable_error_code = [
"ignore-without-code",
"truthy-bool",
"redundant-expr",
]
warn_unreachable = false

[[tool.mypy.overrides]]
module = [
"vector._compute.*.*",
"numba.*",
"awkward.*",
]
ignore_missing_imports = true
disallow_untyped_defs = false
disallow_untyped_calls = false

0 comments on commit 5f0103c

Please sign in to comment.