-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 939 Bytes
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
[project]
name = "hmr-cookbook"
version = "0"
requires-python = ">=3.12"
dependencies = [
"hmr~=0.3.0",
"ruff~=0.9.0",
"uvicorn-hmr",
]
[tool.uv.workspace]
members = ["packages/*"]
[tool.uv.sources]
uvicorn-hmr = { workspace = true }
[tool.pyright]
typeCheckingMode = "standard"
[tool.ruff]
line-length = 150
[tool.ruff.lint]
extend-select = [
"FURB", # refurb
"RUF", # ruff
"UP", # pyupgrade
"N", # pep8-naming
"W", # pycodestyle
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"FA", # flake8-future-annotations
"TC", # flake8-type-checking
"FBT", # flake8-boolean-trap
"ISC", # flake8-implicit-str-concat
"ARG", # flake8-unused-arguments
"PIE", # flake8-pie
"PTH", # flake8-use-pathlib
"RSE", # flake8-raise
"SIM", # flake8-simplify
"SLF", # flake8-self
"ASYNC", # flake8-async
]