aapt to buku: add Chinese translation (#4846)

This commit is contained in:
zhouquan
2020-11-04 14:12:56 -06:00
committed by GitHub
parent 7820f75085
commit 8f73cca2e7
28 changed files with 597 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
# autoflake
> 一个工具用于检查python代码中未被使用的引入和变量.
> 更多信息: <https://github.com/myint/autoflake>.
- 移除指定文件中未使用的变量并展示diff:
`autoflake --remove-unused-variables {{文件.py}}`
- 移除多个文件中未使用的引入并展示diffs:
`autoflake --remove-all-unused-imports {{文件1.py}} {{文件2.py}} {{文件3.py}}`
- 移除未被使用的变量,并覆盖更新:
`autoflake --remove-unused-variables --in-place {{文件.py}}`
- 递归地移除指定文件夹下层所有文件中未使用的变量,并覆盖更新:
`autoflake --remove-unused-variables --in-place --recursive {{路径/到/目录}}`