| 1234567891011121314151617181920212223 |
- [project]
- name = "hardware.dark.fi"
- description = "Webshop for the Dark Fi project"
- requires-python = ">3.12"
- dynamic = ["version"]
- authors = [{name = "André Fincato", email = "work@andrefincato.info"}]
- readme = "README.md"
- dependencies = [
- ]
- [tool.ruff]
- fix = true
- [tool.ruff.lint]
- extend-select = [
- "D", # pydocstyle
- ]
- ignore = ["D100", "D101", "D104", "D205", "D400", "D401", "D404", "D415", "E402", "E501", "E203"]
- [tool.ruff.format]
- # Enable reformatting of code snippets in docstrings.
- docstring-code-format = true
|