# - https://timothycrosley.github.io/isort/ # - https://github.com/timothycrosley/isort#configuring-isort # - https://github.com/timothycrosley/isort/wiki/isort-Settings [isort] combine_as_imports = True ensure_newline_before_comments = True force_grid_wrap = 0 include_trailing_comma = True known_first_party = itou lines_after_imports = 2 line_length = 119 multi_line_output = 3 use_parentheses = True # - https://www.flake8rules.com # - http://flake8.pycqa.org/en/3.1.1/user/ignoring-errors.html#changing-the-ignore-list [flake8] # E203: Whitespace before ':', used to please Black in `yield items[i : i + n]` # E266: Too many leading '#' for block comment # W503: Line break occurred before a binary operator ignore = E203, E266, W503 max-line-length = 119