| 1234567891011121314151617181920212223242526272829 |
- [tool.black]
- line-length = 88
- target-version = ['py39']
- include = '\.pyi?$'
- # 确保复杂表达式会被适当换行
- extend-exclude = '''
- /(
- # directories
- \.eggs
- | \.git
- | \.hg
- | \.mypy_cache
- | \.tox
- | \.venv
- | build
- | dist
- )/
- '''
- [tool.isort]
- profile = "black"
- line_length = 88
- multi_line_output = 3
- include_trailing_comma = true
- force_grid_wrap = 0
- use_parentheses = true
- ensure_newline_before_comments = true
- known_first_party = ["src", "py_xiaozhi"]
- sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
|