mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
1 year ago
|
[tool.black]
|
||
|
line-length = 80
|
||
|
target-version = [
|
||
|
"py37",
|
||
|
"py38",
|
||
|
"py39",
|
||
|
"py310",
|
||
|
"py311",
|
||
|
]
|
||
|
extend-exclude = '''
|
||
|
# A regex preceded with ^/ will apply only to files and directories
|
||
|
# in the root of the project.
|
||
|
(
|
||
|
site-packages
|
||
|
| test/cpp/naming/resolver_component_tests_runner.py # AUTO-GENERATED
|
||
|
# AUTO-GENERATED from a template:
|
||
|
| grpc_version.py
|
||
|
| src/python/grpcio/grpc_core_dependencies.py
|
||
|
| src/python/grpcio/grpc/_grpcio_metadata.py
|
||
|
# AUTO-GENERATED BY make_grpcio_tools.py
|
||
|
| tools/distrib/python/grpcio_tools/protoc_lib_deps.py
|
||
|
| .*_pb2.py # autogenerated Protocol Buffer files
|
||
|
| .*_pb2_grpc.py # autogenerated Protocol Buffer gRPC files
|
||
|
)
|
||
|
'''
|
||
|
|
||
|
[tool.isort]
|
||
|
profile = "black"
|
||
|
line_length = 80
|
||
|
src_paths = [
|
||
|
"examples/python/data_transmission",
|
||
|
"examples/python/async_streaming",
|
||
|
"tools/run_tests/xds_k8s_test_driver",
|
||
|
"src/python/grpcio_tests",
|
||
|
"tools/run_tests",
|
||
|
]
|
||
|
known_first_party = [
|
||
|
"examples",
|
||
|
"src",
|
||
|
]
|
||
|
known_third_party = ["grpc"]
|
||
|
skip_glob = [
|
||
|
"third_party/*",
|
||
|
"*/env/*",
|
||
|
"*pb2*.py",
|
||
|
"*pb2*.pyi",
|
||
|
"**/site-packages/**/*",
|
||
|
]
|
||
|
single_line_exclusions = ["typing"]
|
||
|
force_single_line = true
|
||
|
force_sort_within_sections = true
|