Files
opensearch-pyd/setup.cfg
T
Daniel (dB.) Doubrovkine e92eac2c82 Enabled pylint:pointless-statement. (#611)
Signed-off-by: dblock <dblock@amazon.com>
2023-11-21 12:55:24 -08:00

32 lines
512 B
INI

[bdist_wheel]
universal = 1
[bdist_rpm]
requires = python python-urllib3
[flake8]
ignore = E203, E266, E501, W503
max-line-length = 240
[tool:pytest]
junit_family=legacy
asyncio_mode=auto
[isort]
profile=black
[black]
max-line-length = 240
target-version = 'py33'
[mypy]
ignore_missing_imports=True
[pylint]
max-line-length = 240
good-names-rgxs = ^[_a-z][_a-z0-9]?$ # allow for 1-character variable names
[pylint.MESSAGE CONTROL]
disable = all
enable = line-too-long, invalid-name, pointless-statement