-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyrefly.toml
More file actions
36 lines (34 loc) · 766 Bytes
/
Copy pathpyrefly.toml
File metadata and controls
36 lines (34 loc) · 766 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
[pyrefly]
venv = ".venv"
python_path = [".venv/Scripts/python.exe", ".venv/Lib/site-packages"]
ignore = [
"templates",
"static",
".venv",
"__pycache__",
"__pyrefly_virtual__",
"inmemory",
"**/__pyrefly_virtual__/**",
"**/inmemory/**",
"d:/__pyrefly_virtual__/**",
"d:\\__pyrefly_virtual__\\**"
]
exclude = [
"templates/*",
"static/*",
".venv/*",
"__pyrefly_virtual__/*",
"**/__pyrefly_virtual__/*",
"inmemory/*"
]
ignore_missing_imports = true
[pyrefly.rules]
type-check = "off"
no-member = "off"
arg-type = "off"
deprecated = "off"
deprecated-call = "off"
unreachable = "off"
overload = "off"
[pyrefly.errors]
ignore_undefined_names_in = ["templates/**", "__pyrefly_virtual__/**", "**/inmemory/**"]