mirror of
https://gerrit.googlesource.com/git-repo
synced 2024-12-21 07:16:21 +00:00
f767f7d5c4
Excluding these two folders to avoid countless lint warnings caused by dependencies in these two folders. Change-Id: I2403b23f88cebb5941a4f9b5ac6cc34d107fd2f1 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/382837 Commit-Queue: Daniel Kutik <daniel.kutik@lavawerk.com> Tested-by: Daniel Kutik <daniel.kutik@lavawerk.com> Reviewed-by: Mike Frysinger <vapier@google.com>
17 lines
392 B
INI
17 lines
392 B
INI
[flake8]
|
|
max-line-length = 80
|
|
per-file-ignores =
|
|
# E501: line too long
|
|
tests/test_git_superproject.py: E501
|
|
extend-ignore =
|
|
# E203: Whitespace before ':'
|
|
# See https://github.com/PyCQA/pycodestyle/issues/373
|
|
E203,
|
|
# E402: Module level import not at top of file
|
|
E402,
|
|
# E731: do not assign a lambda expression, use a def
|
|
E731,
|
|
exclude =
|
|
venv,
|
|
.tox,
|