From 79ebb31e06cca2df10b6dd8d70ea6f6acc811c4b Mon Sep 17 00:00:00 2001 From: Florian B Date: Sat, 13 Mar 2021 22:29:43 +0100 Subject: [PATCH] yapf: add page and Dutch translation (#5435) --- pages.nl/common/yapf.md | 16 ++++++++++++++++ pages/common/yapf.md | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 pages.nl/common/yapf.md create mode 100644 pages/common/yapf.md diff --git a/pages.nl/common/yapf.md b/pages.nl/common/yapf.md new file mode 100644 index 000000000..088450697 --- /dev/null +++ b/pages.nl/common/yapf.md @@ -0,0 +1,16 @@ +# yapf + +> Python stijlgidschecker. +> Meer informatie: . + +- Print de geformateerde diff die zal optreden uit: + +`yapf --diff {{pad/naar/bestand}}` + +- Print de geformateerde diff uit en breng de wijzigingen aan in het bestand: + +`yapf --diff --in-place {{pad/naar/bestand}}` + +- Formatteer alle Python-bestanden recursief in een map in parallel: + +`yapf --recursive --in-place --style {{pep8}} --parallel {{pad/naar/map}}` diff --git a/pages/common/yapf.md b/pages/common/yapf.md new file mode 100644 index 000000000..75e384ca0 --- /dev/null +++ b/pages/common/yapf.md @@ -0,0 +1,16 @@ +# yapf + +> Python style guide checker. +> More information: . + +- Display a diff of the changes that would be made, without making them (dry-run): + +`yapf --diff {{path/to/file}}` + +- Format the file in-place and display a diff of the changes: + +`yapf --diff --in-place {{path/to/file}}` + +- Recursively format all Python files in a directory, concurrently: + +`yapf --recursive --in-place --style {{pep8}} --parallel {{path/to/directory}}`