forked from openai/gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (36 loc) · 944 Bytes
/
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
[tool.pyright]
include = [
"gym/**",
"tests/**"
]
exclude = [
"**/node_modules",
"**/__pycache__",
"gym/envs/box2d/**",
# "gym/envs/classic_control/**",
"gym/envs/mujoco/**",
"gym/envs/toy_text/**",
"gym/spaces/**",
"gym/utils/**",
"gym/vector/**",
"gym/wrappers/**",
"tests/**"
]
strict = [
]
typeCheckingMode = "basic"
pythonVersion = "3.6"
typeshedPath = "typeshed"
enableTypeIgnoreComments = true
# This is required as the CI pre-commit does not download the module (i.e. numpy, pygame, box2d)
# Therefore, we have to ignore missing imports
reportMissingImports = "none"
reportUnknownMemberType = "none"
reportUnknownParameterType = "none"
reportUnknownVariableType = "none"
reportUnknownArgumentType = "none"
reportPrivateUsage = "warning"
reportUntypedFunctionDecorator = "none"
reportMissingTypeStubs = false
reportUnboundVariable = "warning"
reportGeneralTypeIssues ="none"