Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

autopep8: add page #5645

Merged
merged 16 commits into from
Apr 2, 2021
20 changes: 20 additions & 0 deletions pages.nl/common/autopep8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# autopep8

> Formatteer Python-code conform de PEP 8-stijlgids.
> Meer informatie: <https://github.com/hhatto/autopep8>.

- 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}}`
20 changes: 20 additions & 0 deletions pages/common/autopep8.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# autopep8

> Format Python code according to the PEP 8 style guide.
> More information: <https://github.com/hhatto/autopep8>.

- 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}}`