-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
51 lines (38 loc) · 1.15 KB
/
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
45
46
47
48
49
50
#
# This file is used for configuring Python tools, rather than
# the workspace as a whole. As uv supports workspace it will be used.
#
# Pylint configuration
[tool.pylint]
# Source roots - important for finding imports
source-roots = [
"components/processing/libs/processor-base/src",
"components/processing/libs/processor-msg/src",
"components/processing/libs/processor-xlsx/src",
"components/webui/src",
]
[tool.pylint."MESSAGE_CONTROL"]
# Disable everything
disable="all"
# But enable warnings and unused-import
enable="E,unused-import"
# Pyright configuration
[tool.pyright]
# Paths of files to validate
include=[
"components/processing/libs/processor-base/src",
"components/processing/libs/processor-msg/src",
"components/processing/libs/processor-xlsx/src",
"components/webui/src",
]
# Paths of modules for dependencies
executionEnvironments = [
{ root = ".", extraPaths = [
"components/processing/libs/processor-xlsx/src",
"components/processing/libs/processor-base/src",
"components/processing/libs/processor-msgx/src",
"components/webui/src",
] }
]
reportMissingImports=true
reportMissingTypeStubs=false