瀏覽代碼

black: add page (#3506)

stets 5 年之前
父節點
當前提交
eb8015a192
共有 1 個文件被更改,包括 24 次插入0 次删除
  1. 24 0
      pages/common/black.md

+ 24 - 0
pages/common/black.md

@@ -0,0 +1,24 @@
+# black
+
+> A Python auto code formatter.
+> More information: <https://github.com/psf/black>.
+
+- Auto-format a file or entire directory:
+
+`black {{path/to/file_or_directory}}`
+
+- Format the code passed in as a string:
+
+`black -c {{path/to/file_or_directory}}`
+
+- Output a diff for each file on stdout:
+
+`black --diff {{path/to/file_or_directory}}`
+
+- Return the status without writing the files back:
+
+`black --check {{path/to/file_or_directory}}`
+
+- Auto-format a file or directory emitting exclusively error messages to stderr:
+
+`black --quiet {{path/to/file_or_directory}}`