-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
pyproject.toml
54 lines (52 loc) · 2.39 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
51
52
53
54
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[tool.ruff.lint]
ignore = ["E402"]
[tool.ruff.lint.per-file-ignores]
# production
"comtypes/_comobject.py" = ["E713", "E722", "F401"]
"comtypes/_npsupport.py" = ["F401"]
"comtypes/connectionpoints.py" = ["F401", "F403", "F405"]
"comtypes/automation.py" = ["F401", "F403", "F405"]
"comtypes/errorinfo.py" = ["F403", "F405"]
"comtypes/git.py" = ["F401", "F403", "F405"]
"comtypes/logutil.py" = ["E401"]
"comtypes/shelllink.py" = ["F401"]
"comtypes/util.py" = ["F403", "F405"]
"comtypes/viewobject.py" = ["F403", "F405"]
"comtypes/_post_coinit/unknwn.py" = ["F821"]
"comtypes/client/__init__.py" = ["F401", "F403"]
"comtypes/client/_code_cache.py" = ["E401", "E711"]
"comtypes/client/_constants.py" = ["F401"]
"comtypes/client/_events.py" = ["F841"]
"comtypes/client/lazybind.py" = ["F821"]
"comtypes/server/__init__.py" = ["E401"]
"comtypes/server/automation.py" = ["F403", "F405"]
"comtypes/server/connectionpoints.py" = ["F401", "F403", "F405"]
"comtypes/server/inprocserver.py" = ["E713", "E722", "F403", "F405", "F841"]
"comtypes/server/localserver.py" = ["F401", "F403", "F405"]
"comtypes/server/register.py" = ["F403", "F405", "E713", "E731"]
"comtypes/tools/codegenerator/codegenerator.py" = ["E713", "E721"]
"comtypes/tools/codegenerator/helpers.py" = ["F401"]
"comtypes/tools/codegenerator/packing.py" = ["F821", "F841"]
"comtypes/tools/tlbparser.py" = ["F401"]
"comtypes/tools/typedesc.py" = ["F403", "F405"]
"comtypes/tools/typedesc_base.py" = ["F401"]
# tests
"comtypes/test/TestComServer.py" = ["E401", "F401", "F403", "F405"]
"comtypes/test/TestDispServer.py" = ["E401"]
"comtypes/test/find_memleak.py" = ["E401", "F401", "F403", "F405"]
"comtypes/test/setup.py" = ["F401"]
"comtypes/test/test_BSTR.py" = ["E401", "F401", "F403", "F405"]
"comtypes/test/test_agilent.py" = ["F401", "F841"]
"comtypes/test/test_client.py" = ["F401"]
"comtypes/test/test_dict.py" = ["F841"]
"comtypes/test/test_ie.py" = ["F403", "F405", "F841"]
"comtypes/test/test_outparam.py" = ["F403", "F405", "F841"]
"comtypes/test/test_sapi.py" = ["E401"]
"comtypes/test/test_server.py" = ["E401", "E722", "F401", "F841"]
"comtypes/test/test_subinterface.py" = ["E401", "F401", "F403", "F405"]
"comtypes/test/test_typeinfo.py" = ["F401"]
"comtypes/test/test_urlhistory.py" = ["E401", "F401", "F403", "F405", "F841"]
"comtypes/test/test_variant.py" = ["F401", "F821", "F841"]