Skip to content

Commit

Permalink
Engage Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrharpo committed Oct 3, 2024
1 parent 8ac290f commit be506bf
Showing 1 changed file with 10 additions and 17 deletions.
27 changes: 10 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,42 +27,35 @@ requires-python = ">=3.9"
license = { text = "MIT" }

[project.optional-dependencies]
production = [
"gunicorn~=23.0",
"uvicorn~=0.31",
]
production = ["gunicorn~=23.0", "uvicorn~=0.31"]

[tool.pdm.dev-dependencies]
dev = [
"uvicorn~=0.31",
"black~=24.8",
"ruff~=0.6",
]
dev = ["uvicorn~=0.31", "black~=24.8", "ruff~=0.6"]

[tool.ruff.format]
quote-style = 'single'

[tool.lint]
ignore = ['Q000']
select = [
'B', # flake8-bugbear
'C4', # flake8-comprehensions
'B', # flake8-bugbear
'C4', # flake8-comprehensions
'C90', # mccabe
'E', # pycodestyle errors
'E', # pycodestyle errors
'ERA', # eradicate
'F', # pyflakes
'F', # pyflakes
# 'I', # isort
'INT', # flake8-gettext
'N', # pep8-naming
'N', # pep8-naming
'PIE', # flake8-pie,
'PLC', # pylint - convention
'PLE', # pylint - error
'PLW', # pylint - warning
'Q', # flake8-quotes
'Q', # flake8-quotes
'RET', # flake8-return,
'RUF', # Ruff-specific rules
'SIM', # flake8-simplify
'UP', # pyupgrade
'W', # pycodestyle warnings
'UP', # pyupgrade
'W', # pycodestyle warnings

]

0 comments on commit be506bf

Please sign in to comment.