add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# autopep8
> 按照 PEP 8 风格指南格式化 Python 代码。
> 更多信息:<https://github.com/hhatto/autopep8>。
- 将文件格式化为 `stdout`,并设置自定义的最大行长度:
`autopep8 {{path/to/file.py}} --max-line-length {{length}}`
- 格式化文件,并显示更改的 diff
`autopep8 --diff {{path/to/file}}`
- 就地格式化文件并保存更改:
`autopep8 --in-place {{path/to/file.py}}`
- 递归地格式化目录中的所有文件并保存更改:
`autopep8 --in-place --recursive {{path/to/directory}}`