-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpants.toml
48 lines (37 loc) · 816 Bytes
/
pants.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
[GLOBAL]
pants_version = "2.18.0"
backend_packages = [
"pants.backend.docker",
"pants.backend.python",
"pants.backend.python.lint.black",
"pants.backend.python.lint.isort",
"pants.backend.python.lint.flake8",
"pants.backend.python.typecheck.mypy",
"pants.backend.shell",
]
[source]
root_patterns = [
"/src/python",
]
[flake8]
config = "build-support/flake8"
[isort]
config = "build-support/pyproject.toml"
[black]
config = "build-support/pyproject.toml"
[anonymous-telemetry]
enabled = false
[python]
enable_resolves = true
interpreter_constraints = ["CPython==3.10.*"]
[python-infer]
string_imports = true
[tailor]
ignore_paths = ["src/micropython/**"]
[docker.registries.ghcr]
address = "ghcr.io/xlevus/gymkhana"
default = true
[docker]
env_vars = [
"DOCKER_HOST",
]