setup.cfg (7 lines of code) (raw):

[flake8] # Exclude grpc autogenerated files exclude = venv, *_pb2_grpc.py, *_pb2.py, .tox, .git, __pycache__ ignore = E501, W504 [isort] # Set multi_line_output to option 3 - Vertical Hanging Indent # from third_party import ( # lib1, # lib2, # lib3, # lib4, # ) multi_line_output = 3 skip_gitignore = true skip_glob = *_pb2_grpc.py, *_pb2.py