File size: 576 Bytes
3a464db | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [flake8]
max-line-length = 99
ignore = W503,E203,E741
per-file-ignores =
run.py: E402
vlmeval/vlm/__init__.py: F401, E402
vlmeval/dataset/video_dataset_config.py: F405, F403
[yapf]
based_on_style = pep8
blank_line_before_nested_class_or_def = true
split_before_expression_after_opening_paren = true
split_penalty_import_names = 0
split_penalty_after_opening_bracket = 800
column_limit = 99
[isort]
line_length = 99
multi_line_output = 0
known_first_party = vlmeval
no_lines_before = STDLIB,LOCALFOLDER
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
|