-
-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 871 Bytes
/
pyproject.toml
File metadata and controls
47 lines (42 loc) · 871 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
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.uv.workspace]
members = [
"src/realtime",
"src/functions",
"src/supabase",
"src/storage",
"src/postgrest",
"src/auth",
"src/utils",
]
[tool.uv.sources]
realtime = { workspace = true }
supabase_functions = { workspace = true }
supabase_auth = { workspace = true }
supabase_utils = { workspace = true }
storage3 = { workspace = true }
postgrest = { workspace = true }
supabase = { workspace = true }
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py39"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
# "SIM",
# isort
"I",
"ANN2"
]
ignore = ["F403", "E501", "E402", "UP006", "UP035"]
[tool.ruff.lint.pyupgrade]
# Preserve types, even if a file imports `from __future__ import annotations`.
keep-runtime-typing = true