Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
retinaface/pyproject.toml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
25 lines (23 sloc)
516 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example configuration for Black. | |
# NOTE: you have to use single-quoted strings in TOML for regular expressions. | |
# It's the equivalent of r-strings in Python. Multiline strings are treated as | |
# verbose regular expressions by Black. Use [ ] to denote a significant space | |
# character. | |
[tool.black] | |
line-length = 119 | |
target-version = ['py36', 'py37', 'py38'] | |
include = '\.pyi?$' | |
exclude = ''' | |
/( | |
\.eggs | |
| \.git | |
| \.hg | |
| \.mypy_cache | |
| \.tox | |
| \.venv | |
| _build | |
| buck-out | |
| build | |
| dist | |
)/ | |
''' |