mirror of
https://github.com/hpcaitech/ColossalAI.git
synced 2025-04-27 11:31:58 +00:00
23 lines
307 B
INI
23 lines
307 B
INI
[flake8]
|
|
ignore =
|
|
;W503 line break before binary operator
|
|
W503,
|
|
;E203 whitespace before ':'
|
|
E203,
|
|
|
|
; exclude file
|
|
exclude =
|
|
.tox,
|
|
.git,
|
|
__pycache__,
|
|
build,
|
|
dist,
|
|
*.pyc,
|
|
*.egg-info,
|
|
.cache,
|
|
.eggs
|
|
|
|
max-line-length = 120
|
|
|
|
per-file-ignores = __init__.py:F401
|