Files
aoc-py/pyproject.toml

19 lines
360 B
TOML

[tool.ruff]
extend-exclude = ['venv', 'env']
[tool.ruff.lint]
select = [
'F', # pyflakes
'E', # pycodestyle
'W', # pycodestyle
'I', # isort
'UP', # pyupgrade
'B', # flake8-bugbear
'C', # flake8-comprehensions
'RUF', # ruff
'N', # pep8-naming
]
[tool.pytest.ini_options]
python_files = ['day_*.py']