kmk_firmware/pyproject.toml

25 lines
524 B
TOML
Raw Normal View History

[tool.black]
# since black refuses to allow single-quotes... see locked conversation at
# https://github.com/psf/black/issues/594
skip-string-normalization = true
target = "py36"
2022-04-18 11:39:19 +02:00
# explicitly exclude user_keymaps from black formatting rules
# because a visually-appealing keymap list will be flattened
# by black into a much harder to understand format
exclude = '''
/(
\.git
| \.mypy_cache
| \.tox
| \.venv
| \.pytest_cache
| \.compiled
| dist
| boards
| build
| docs
| user_keymaps
| mnt
)/
'''