-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 950 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
48
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
exclude = [
"deps",
"src/gh/components",
"src/gh/diffCheck/setup.py",
"temp",
"doc",
"src/gh/diffCheck/diffCheck/__init__.py"
]
[[tool.mypy.overrides]]
module = [
"Rhino.*",
"rhinoscriptsyntax.*",
"scriptcontext.*",
"Grasshopper.*",
"System.*",
"GH_IO.*",
"clr.*",
"diffcheck_bindings",
"diffCheck.diffcheck_bindings"
]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pefile"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "df_geometries"
disable_error_code = "annotation-unchecked"
check_untyped_defs = false
[[tool.mypy.overrides]]
module = "src.gh.diffCheck.diffCheck.df_geometries"
disable_error_code = "annotation-unchecked"
[tool.ruff]
exclude = [
"doc/",
"deps/",
"temp/"
]
[tool.ruff.per-file-ignores]
"src/gh/diffCheck/diffCheck/__init__.py" = ["F401", "F403" ,"E402"]