-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 872 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[project]
name = "stream-overlays"
version = "0.0.0"
description = "A RotorHazard plugin with collection of stream overlays to use with OBS Studio or similar software."
readme = "README.md"
requires-python = ">=3.11"
dependencies = []
[dependency-groups]
dev = [
"pre-commit-hooks==6.0.0",
"prek==0.3.4",
"ruff==0.15.5",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.5",
]
[tool.ruff]
target-version = "py311"
lint.select = ["ALL"]
lint.ignore = [
"ANN401", # Opinioated warning on disallowing dynamically typed expressions
"D203", # Conflicts with other rules
"D213", # Conflicts with other rules
"D417", # False positives in some occasions
"PLR2004", # Just annoying, not really useful
"SLOT000", # Has a bug with enums: https://github.com/astral-sh/ruff/issues/5748
# Conflicts with the Ruff formatter
"COM812",
"ISC001",
]