Welcome to mirror list, hosted at ThFree Co, Russian Federation.

flake8.cfg « scripts - github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd4f95bb20c76b520967715258140965d30fd9b2 (plain)
1
2
3
4
5
6
[flake8]
# E501 line too long
# W504 line break after binary operator
ignore = E501,W504
# F401: imported but unused
per-file-ignores = __init__.py:F401