mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00

* flake8 fixes -- tests only * fix ci failure * integrate fix from is_3551 so tests will pass. * Update tests/test_builtins.py Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com>
30 lines
488 B
TOML
30 lines
488 B
TOML
[tool.black]
|
|
# better to keep default line-length than to match flake8
|
|
exclude = '''
|
|
( # exclude entire contents of these top level directories...
|
|
/( \.eggs
|
|
| \.git
|
|
| \.hg
|
|
| \.mypy
|
|
| _cache
|
|
| \.nox
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
|
|
)
|
|
|
|
|
(
|
|
# and these additional random rules
|
|
/( __pycache__
|
|
| \.circleci
|
|
| \.github
|
|
| \.vscode
|
|
| \.pytest_cache
|
|
)/
|
|
)
|
|
'''
|