Newer
Older
# Copyright (C) 2024, UChicago Argonne, LLC
# Licensed under the 3-clause BSD license. See accompanying LICENSE.txt file
# in the top-level directory.
[tool.autopep8]
max_line_length = 131
[tool.flake8]
max-line-length = 131
ignore = ["E203", "W503"] # ignore flake8 messages caused by the black formatter
[tool.black]
line-length = 131
[tool.pylint]
max-line-length = 131
disable = ["W0511"]
[tool.pytest.ini_options]
pythonpath = [
"src/main/python",
]
testpaths = [
"src/test/python",
]
filterwarnings = [
"ignore::DeprecationWarning:test_bitmask", # remove after numpy fixes lack of overflow detection.
]