-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
44 lines (41 loc) · 866 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.black]
line-length = 100
include = '\.py$'
exclude = '''
/(
\.git
| \.tox
| examples/\.lifx
| dist
| docs/res
| tools/\.python
| tools/deps
| apps/interactor/docker/\.harpoon
| docs/res
| docs/gh-pages
| tools/generate_photons_messages/.generate_photons_messages
)/
'''
[tool.isort]
profile = "black"
skip_glob = [
".git/*",
".tox/*",
"examples/.lifx/*",
"dist/*",
"docs/res/*",
"tools/.python/*",
"tools/deps/*",
"apps/interactor/docker/.harpoon/*",
"docs/res/*",
"docs/gh-pages/*",
"tools/generate_photons_messages/.generate_photons_messages/*",
]
[tool.mypy]
plugins = 'noseOfYeti.plugins.mypy'
mypy_path = 'modules:apps/arranger:apps/interactor'
namespace_packages = true
explicit_package_bases = true
ignore_missing_imports = true
show_column_numbers = true
exclude = ['.*/build/.*']