[tool.black]
# 'extend-exclude' excludes files or directories in addition to the defaults
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
    .*_pb2.py  # exclude autogenerated Protocol Buffer files anywhere in the project
    | .*_pb2_grpc.py  # exclude autogenerated Protocol Buffer files anywhere in the project
)
'''
