Brought over the same lints as used in the main ironic repo via pre-commit and ruff. Updated tox.ini to use pre-commit the same way. Change-Id: Ic2138427fd408a581cfbcb9c9da84074d1a2bfa8 Signed-off-by: Doug Goldstein <cardoe@cardoe.com>
19 lines
345 B
TOML
19 lines
345 B
TOML
[build-system]
|
|
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
|
|
build-backend = "pbr.build"
|
|
|
|
[tool.doc8]
|
|
ignore = ["D001"]
|
|
|
|
[tool.ruff]
|
|
line-length = 79
|
|
target-version = "py37"
|
|
|
|
[tool.ruff.lint]
|
|
select = [
|
|
"E", # pycodestyle (error)
|
|
"F", # pyflakes
|
|
"G", # flake8-logging-format
|
|
"LOG", # flake8-logging
|
|
]
|