From 4a7fab0b97c715ac6d09c63f260a0678f3b6d551 Mon Sep 17 00:00:00 2001 From: Florian B Date: Fri, 2 Apr 2021 20:31:33 +0200 Subject: [PATCH] autopep8: add page (#5645) --- pages.nl/common/autopep8.md | 20 ++++++++++++++++++++ pages/common/autopep8.md | 20 ++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 pages.nl/common/autopep8.md create mode 100644 pages/common/autopep8.md diff --git a/pages.nl/common/autopep8.md b/pages.nl/common/autopep8.md new file mode 100644 index 000000000..edc550c0b --- /dev/null +++ b/pages.nl/common/autopep8.md @@ -0,0 +1,20 @@ +# autopep8 + +> Formatteer Python-code conform de PEP 8-stijlgids. +> Meer informatie: . + +- Formateer een bestand naar stdout, met een ingestelde maximale toegestane regellengte: + +`autopep8 {{pad/naar/bestand.py}} --max-line-length {{lengte}}` + +- Formateer een bestand, geef een diff weer met de wijzigingen: + +`autopep8 --diff {{pad/naar/bestand.py}}` + +- Formatteer het bestand en sla de wijzigingen op: + +`autopep8 --in-place {{pad/naar/bestand.py}}` + +- Formatteer de bestanden recursief in een map en sla deze wijzigingen op: + +`autopep8 --in-place --recursive {{pad/naar/map}}` diff --git a/pages/common/autopep8.md b/pages/common/autopep8.md new file mode 100644 index 000000000..834fb2460 --- /dev/null +++ b/pages/common/autopep8.md @@ -0,0 +1,20 @@ +# autopep8 + +> Format Python code according to the PEP 8 style guide. +> More information: . + +- Format a file to stdout, with a custom maximium line length: + +`autopep8 {{path/to/file.py}} --max-line-length {{length}}` + +- Format a file, displaying a diff of the changes: + +`autopep8 --diff {{path/to/file}}` + +- Format a file in-pace and save the changes: + +`autopep8 --in-place {{path/to/file.py}}` + +- Recursively format all files in a directory in-place and save changes: + +`autopep8 --in-place --recursive {{path/to/directory}}`