onnxruntime/pyproject.toml
Justin Chu 6fb29f5b9a
Add python docstring linting in vscode settings (#11316)
Add python docstring linting in vscode settings
Use black and isort for python code formatting in VScode. Import sorting enabled on save. Code formatting available in VSCode with manual trigger.
Adopted from pytorch https://github.com/pytorch/pytorch/blob/master/.vscode/settings_recommended.json
2022-04-23 06:23:04 -07:00

9 lines
122 B
TOML

[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.pydocstyle]
convention = "google"